/* ========================================
   FANTASTICA & VERSATIL - Pinturas e Reabilitações
   CSS Stylesheet - Design Profissional e Responsivo
   ======================================== */

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no logo */
    --primary-color: #1a3a52;
    --secondary-color: #4a90b5;
    --accent-color: #2c5c7a;
    --light-blue: #6eb0d6;
    --dark-bg: #0f2736;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   Header e Navegação
   ======================================== */

.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Filtro para deixar o logo todo branco */
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-subtitle {
    color: var(--light-blue);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: linear-gradient(rgba(26, 58, 82, 0.85), rgba(44, 92, 122, 0.85)),
                url('../images/hero-background.jpg') center/cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ========================================
   Botões
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 144, 181, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 181, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ========================================
   Seções
   ======================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--light-blue));
    margin: 0 auto 15px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Sobre
   ======================================== */

.sobre {
    background: var(--light-gray);
}

.sobre-text {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sobre-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

/* ========================================
   Serviços Destaque
   ======================================== */

.servicos-destaque {
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 144, 181, 0.2);
    border-color: var(--secondary-color);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.servico-icon i {
    font-size: 36px;
    color: var(--white);
}

.servico-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servico-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.servico-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.servico-link:hover {
    color: var(--primary-color);
}

.servico-link i {
    transition: var(--transition);
}

.servico-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   Portfolio
   ======================================== */

.portfolio {
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.95), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--light-blue);
    font-size: 14px;
}

/* ========================================
   Testemunhos
   ======================================== */

.testemunhos {
    background: var(--white);
}

.testemunhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testemunho-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.testemunho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testemunho-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testemunho-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testemunho-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.autor-info h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 3px;
}

.autor-info p {
    color: var(--text-light);
    font-size: 13px;
}

/* ========================================
   CTA (Call to Action)
   ======================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================================
   Página Header (Services e Contact)
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ========================================
   Serviços Detalhados
   ======================================== */

.servicos-detalhados {
    background: var(--light-gray);
}

.servico-detalhe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.servico-detalhe:last-child {
    margin-bottom: 0;
}

.servico-detalhe.reverse {
    direction: rtl;
}

.servico-detalhe.reverse > * {
    direction: ltr;
}

.servico-imagem {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.servico-imagem img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.servico-imagem:hover img {
    transform: scale(1.05);
}

.servico-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servico-icon-large i {
    font-size: 32px;
    color: var(--white);
}

.servico-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servico-lista {
    margin: 25px 0;
}

.servico-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.servico-lista i {
    color: var(--secondary-color);
    font-size: 18px;
}

.servico-detalhes-extras {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.detalhe-box {
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--secondary-color);
}

.detalhe-box i {
    color: var(--secondary-color);
    font-size: 20px;
}

.detalhe-box span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* ========================================
   Por Que Escolher
   ======================================== */

.por-que-escolher {
    background: var(--white);
}

.escolher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.escolher-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: var(--light-gray);
    transition: var(--transition);
}

.escolher-item:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.escolher-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.escolher-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.escolher-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Contato
   ======================================== */

.contato-section {
    background: var(--light-gray);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contato-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
}

.contato-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contato-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-items {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--light-blue);
    font-size: 22px;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--light-blue);
}

.info-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.social-contato h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ========================================
   Formulário de Contato
   ======================================== */

.contato-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contato-form-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Mapa e FAQ
   ======================================== */

.map-section {
    background: var(--white);
}

.map-placeholder {
    background: var(--light-gray);
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    border: 2px dashed var(--secondary-color);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder small {
    color: var(--text-light);
}

.faq-section {
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 39px;
}

/* ========================================
   Animações
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Responsividade
   ======================================== */

@media (max-width: 1024px) {
    .servico-detalhe {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .servico-detalhe.reverse {
        direction: ltr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 10px;
        align-items: stretch;
    }
    
    .nav-list a {
        padding: 15px;
        font-size: 16px;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero */
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Seções */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* Grids */
    .servicos-grid,
    .portfolio-grid,
    .testemunhos-grid,
    .escolher-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Portfolio */
    .portfolio-item {
        height: 250px;
    }
    
    /* Serviço Detalhe */
    .servico-imagem img {
        height: 300px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .contato-form-wrapper,
    .contato-info {
        padding: 25px;
    }
    
    .servico-detalhe {
        padding: 25px;
    }
}

/* ========================================
   Botão de Login
   ======================================== */

.btn-login {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 2px 8px rgba(74, 144, 181, 0.3) !important;
}

.btn-login:hover {
    background: var(--accent-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(74, 144, 181, 0.4) !important;
}

@media (max-width: 768px) {
    .btn-login {
        margin-top: 10px !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* ========================================
   Estilos para Mapa do Google Maps
   ======================================== */

.map-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    text-align: center;
}

.map-info p {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info i {
    color: var(--accent-color);
    font-size: 20px;
}

.map-info small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsividade do Mapa */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-info p {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
}

