/* ========================================
   AUDICENT - LANDING PAGE PL 213/2025
   Paleta de Cores Oficial:
   - Turquesa: #00A19A
   - Azul Royal: #334596
   - Azul Céu: #009FE3
   Tipografias: All Round Gothic Book, Work Sans, Karla
======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --turquesa: #00A19A;
    --azul-royal: #334596;
    --azul-ceu: #009FE3;
    --cinza-escuro: #3C3C3B;
    --cinza-medio: #6B6B6B;
    --cinza-claro: #F5F5F5;
    --branco: #FFFFFF;

    --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-royal);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
    color: var(--cinza-medio);
}

/* Buttons */
.btn-primary,
.btn-header,
.btn-whatsapp {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--turquesa);
    color: var(--branco);
    box-shadow: 0 2px 8px rgba(0, 161, 154, 0.2);
}

.btn-primary:hover {
    background: #008A84;
    box-shadow: 0 4px 12px rgba(0, 161, 154, 0.3);
}

.btn-header {
    background: var(--azul-royal);
    color: var(--branco);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-header:hover {
    background: #2A3778;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
}

.btn-whatsapp:hover {
    background: #1EBE57;
}

/* Header */
.header {
    background: var(--branco);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FFFE 0%, var(--branco) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--turquesa) 0%, var(--azul-ceu) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-block;
    background: var(--turquesa);
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--azul-royal);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reassurance {
    font-size: 1rem;
    color: var(--cinza-medio);
    font-style: italic;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-card {
    background: #FFF9F0;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #FFE5CC;
    border-left: 4px solid #FF6B6B;
}

.alert-badge {
    display: inline-block;
    background: #FF6B6B;
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-card h3 {
    color: var(--azul-royal);
    margin-bottom: 15px;
}

.hero-card p {
    color: var(--cinza-medio);
}

/* Mudanças Section */
.mudancas {
    padding: 100px 0;
    background: #FAFAFA;
    position: relative;
}

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--azul-royal) 0%, var(--azul-ceu) 50%, var(--turquesa) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 75% 60%, 50% 40%, 25% 60%, 0 40%);
}

.mudancas h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--turquesa);
    font-weight: 600;
    margin-bottom: 60px;
}

.mudancas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mudanca-card {
    background: var(--branco);
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    border-left: 4px solid var(--turquesa);
}

.mudanca-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--azul-royal);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--turquesa);
    margin-bottom: 20px;
    display: block;
}

.mudanca-card h3 {
    color: var(--azul-royal);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.mudanca-card p {
    color: var(--cinza-medio);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-box {
    background: var(--azul-royal);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--turquesa);
}

.cta-text {
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1554224311-beee460c201a?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, var(--turquesa), var(--azul-royal));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text .highlight {
    font-size: 1.25rem;
    color: var(--azul-royal);
    font-weight: 600;
    line-height: 1.7;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.valor-item {
    text-align: center;
    padding: 25px;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.valor-item h4 {
    color: var(--turquesa);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.valor-item p {
    font-size: 0.95rem;
    color: var(--cinza-medio);
}

.sobre-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--branco);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--azul-ceu);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-royal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--cinza-medio);
    font-weight: 500;
}

/* Processo Section */
.processo {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
}

.processo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, var(--azul-royal) 0%, var(--turquesa) 50%, var(--azul-ceu) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 80%, 60% 70%, 40% 80%, 20% 70%, 0 80%);
}

.processo h2 {
    text-align: center;
    margin-bottom: 60px;
}

.processo-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--turquesa) 0%, var(--azul-ceu) 100%);
}

.processo-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turquesa) 0%, var(--azul-ceu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 161, 154, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--cinza-claro);
    padding: 30px;
    border-radius: 15px;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    color: var(--azul-royal);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--cinza-medio);
    margin: 0;
}

.processo-footer {
    text-align: center;
    padding: 40px;
    background: var(--azul-royal);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.processo-footer p {
    color: var(--branco);
    font-size: 1.25rem;
    margin: 0;
}

.processo-footer strong {
    color: var(--branco);
    font-weight: 700;
}

/* CTA Principal */
.cta-principal {
    padding: 100px 0;
    background-image:
        linear-gradient(135deg, rgba(51, 69, 150, 0.95) 0%, rgba(0, 161, 154, 0.9) 100%),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--branco);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: var(--branco);
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    color: var(--branco);
}

.contato-info {
    margin-top: 50px;
}

.contato-card {
    background: var(--branco);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquesa) 0%, var(--azul-ceu) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
}

.contato-details h3 {
    color: var(--azul-royal);
    margin-bottom: 5px;
}

.cargo {
    color: var(--turquesa);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--azul-royal);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p,
.footer-info p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer h4 {
    color: var(--branco);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-instagram {
    color: var(--branco);
    text-decoration: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.social-instagram i {
    font-size: 1.25rem;
}

.social-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: var(--branco);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .mudancas-grid {
        grid-template-columns: 1fr;
    }

    .processo-timeline::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contato-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}
