﻿:root {
    --triazen-primary: #2c3e50;
    --triazen-accent: #1abc9c;
    --triazen-bg: #ecf0f1;
    --triazen-dark: #212529;
    --font-family-base: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family-base);
    background-color: var(--triazen-bg);
}

/* --- Seções Reutilizadas (Estilos Base) --- */
.hero-section {
    background: linear-gradient(135deg, var(--triazen-primary) 0%, #34495e 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}
    /* Padding ajustado para mobile */
    .hero-section h1 {
        font-weight: 800;
        font-size: 2.8rem; /* Tamanho base ajustado */
        text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        margin-bottom: 1rem;
    }

        .hero-section h1 .highlight {
            color: var(--triazen-accent);
            text-shadow: none;
        }

    .hero-section .lead {
        font-size: 1.1rem; /* Tamanho base ajustado */
        max-width: 90%;
        margin: 1rem auto 1.5rem;
    }

    .hero-section .sub-lead {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
        max-width: 90%;
        margin: 0 auto 2rem;
    }

.btn-google {
    background-color: #ffffff;
    color: var(--triazen-dark);
    font-weight: 600;
    padding: 0.7rem 1.8rem; /* Padding ajustado */
    border-radius: 50px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

    .btn-google:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.section {
    padding: 4rem 0;
}
/* Padding ajustado */
.section-title {
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem; /* Tamanho base ajustado */
}

.feature-card {
    background: #fff;
    border: none;
    border-radius: 1rem;
    padding: 2rem; /* Padding ajustado */
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

    .feature-card .icon {
        font-size: 2.5rem; /* Tamanho do ícone ajustado */
        color: var(--triazen-accent);
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        font-weight: 700;
        margin-bottom: 0.8rem;
        font-size: 1.2rem; /* Tamanho ajustado */
    }

    .feature-card p {
        flex-grow: 1;
        color: #555;
        font-size: 0.95rem; /* Tamanho ajustado */
    }

.cta-section {
    background-color: var(--triazen-dark);
    color: white;
    padding: 4rem 0;
}

.footer {
    background-color: #1c1f23;
    color: #adb5bd;
    padding: 2rem 0;
    font-size: 0.85rem; /* Tamanho ajustado */
}

    .footer a {
        color: #adb5bd;
        text-decoration: underline;
    }

        .footer a:hover {
            color: #fff;
        }

.text-accent {
    color: var(--triazen-accent);
}

/* =======================================
           RESPONSIVIDADE PARA MOBILE
           ======================================= */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0 3rem; /* Menos padding vertical no mobile */
    }

        .hero-section h1 {
            font-size: 2.2rem; /* Reduz drasticamente o H1 no mobile */
            margin-bottom: 0.8rem;
        }

        .hero-section .lead {
            font-size: 1rem; /* Reduz o lead */
            max-width: 95%; /* Ocupa quase toda a largura */
            margin-bottom: 1rem;
        }

        .hero-section .sub-lead {
            font-size: 0.8rem;
            max-width: 95%;
            margin-bottom: 1.5rem;
        }

    .btn-google {
        padding: 0.6rem 1.5rem; /* Botão ligeiramente menor */
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 0; /* Menos padding nas seções */
    }

    .section-title {
        font-size: 1.8rem; /* Títulos de seção menores */
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.8rem; /* Menos padding nos cards */
    }
    /* Faz os feature cards ocuparem a largura total no mobile */
    .features-row > .col-lg-4, .features-row > .col-md-6 {
        width: 100%;
        margin-bottom: 1.5rem; /* Adiciona espaço entre os cards empilhados */
    }

    .footer {
        font-size: 0.8rem; /* Texto do rodapé menor */
    }
}
