/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    padding-top: 80px; /* Espaço para o menu fixo */
}

/* Menu de Navegação */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    box-shadow: 0 4px 20px var(--shadow-dark);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-vibrant) 0%, var(--orange-vibrant) 50%, #ffffff 80%, var(--yellow-pastel) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 0 15px var(--glow-orange);
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--orange-vibrant);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-vibrant);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--glow-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Menu Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.5rem 1rem;
        gap: 0.3rem;
        box-shadow: 0 15px 40px var(--shadow-dark);
        border: 1px solid var(--border-primary);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: calc(100vh - 80px);
        justify-content: center;
        align-items: stretch;
        overflow-y: auto;
    }


    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border-primary);
        transition: all 0.2s ease;
        border-radius: 6px;
        margin: 0.1rem 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
        display: block;
        width: 100%;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        background: rgba(250, 129, 60, 0.1);
        border-color: var(--orange-vibrant);
        transform: translateX(2px);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Overlay para menu mobile */
    .nav-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Container comum */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção geral */
.section {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(133, 52, 100, 0.05) 0%, rgba(250, 129, 60, 0.02) 30%, transparent 60%);
    animation: subtle-float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtle-float {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-10px) rotate(1deg); }
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Cores do tema - Paleta Premium Atualizada */
:root {
    /* Backgrounds */
    --bg-primary: #1C1C1C; /* Fundo principal escuro elegante */
    --bg-secondary: #2B2B2B; /* Fundo secundário cinza escuro */
    --bg-card: #2f2f2f; /* Fundo dos cards sofisticado */
    --bg-gradient: linear-gradient(135deg, #1C1C1C 0%, #2B2B2B 100%);
    --bg-light: #ffffff; /* Fundo claro para contraste */

    /* Textos */
    --text-primary: #ffffff; /* Texto principal branco puro */
    --text-secondary: #f5f5f5; /* Texto secundário quase branco */
    --text-muted: #b8b8b8; /* Texto muted claro */
    --text-dark: #1C1C1C; /* Texto escuro para fundos claros */

    /* Bordas e Divisores */
    --border-primary: #404040; /* Bordas principais */
    --border-light: #555555; /* Bordas mais claras */
    --divider: #353535; /* Linhas divisórias sutis */

    /* Sombras e Efeitos */
    --shadow-dark: rgba(0, 0, 0, 0.6); /* Sombras dramáticas */
    --shadow-light: rgba(0, 0, 0, 0.2); /* Sombras suaves */
    --shadow-purple: rgba(133, 52, 100, 0.25); /* Sombra roxa */
    --shadow-orange: rgba(250, 129, 60, 0.25); /* Sombra laranja */
    --shadow-colored: rgba(133, 52, 100, 0.25); /* Compatibilidade */
    --glow-purple: rgba(133, 52, 100, 0.4); /* Efeito de brilho roxo */
    --glow-orange: rgba(250, 129, 60, 0.4); /* Efeito de brilho laranja */
    --glow-accent: rgba(133, 52, 100, 0.4); /* Compatibilidade */
    --glow-secondary: rgba(250, 129, 60, 0.3); /* Compatibilidade */

    /* Paleta Premium */
    --purple-dark: #853464; /* Roxo escuro para títulos */
    --purple-medium: #9C5171; /* Roxo médio para elementos de apoio */
    --pink-warm: #BE6577; /* Rosado avermelhado suave */
    --yellow-pastel: #FFDE8F; /* Amarelo pastel para destaques */
    --orange-vibrant: #FA813C; /* Laranja vibrante para CTAs */
    
    /* Cores principais (compatibilidade) */
    --accent-primary: #853464; /* Roxo escuro */
    --accent-secondary: #9C5171; /* Roxo médio */
    --accent-tertiary: #BE6577; /* Rosado avermelhado */
    --accent-hover: #9C5171; /* Roxo médio para hover */
    --accent-vibrant: #FA813C; /* Laranja vibrante */
    
    /* Gradientes Premium */
    --gradient-primary: linear-gradient(135deg, #853464 0%, #9C5171 50%, #BE6577 100%);
    --gradient-secondary: linear-gradient(135deg, #BE6577 0%, #FFDE8F 100%);
    --gradient-cta: linear-gradient(135deg, #FA813C 0%, #853464 100%);
    --gradient-card: linear-gradient(145deg, #2f2f2f 0%, #353535 100%);
    --gradient-hero: linear-gradient(135deg, #1C1C1C 0%, #853464 30%, #FA813C 100%);
}

/* Seção Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(28, 28, 28, 0.5) 0%,
        rgba(28, 28, 28, 0.3) 50%,
        rgba(28, 28, 28, 0.6) 100%
    );
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-text {
    order: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 25px var(--shadow-colored);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px var(--shadow-colored);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-bio {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bio strong {
    background: linear-gradient(135deg, var(--orange-vibrant) 0%, var(--yellow-pastel) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-orange);
    position: relative;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    filter: drop-shadow(0 2px 8px rgba(250, 129, 60, 0.3));
}

.hero-bio strong::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--orange-vibrant), var(--yellow-pastel));
    opacity: 0.1;
    border-radius: 6px;
    z-index: -1;
    box-shadow: 0 0 10px var(--glow-orange);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-cta);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px var(--shadow-orange);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--orange-vibrant);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-orange), 0 5px 15px var(--glow-orange);
    border-color: var(--yellow-pastel);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.social-link:hover {
    color: var(--accent-primary);
    background: var(--glow-accent);
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px var(--glow-accent);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

.hero-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.hero-image:hover::before {
    opacity: 0.2;
    transform: scale(1.05);
}

.profile-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.profile-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.profile-image:hover::after {
    left: 100%;
}

.profile-video {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.profile-video:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Títulos das seções */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 4px 20px var(--shadow-colored);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 2px 10px var(--shadow-colored);
}

/* Texto das seções */
.section-text {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.section-text strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Links das seções */
.section-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.section-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Seção Filosofia */
.filosofia-section {
    background-color: white;
}


/* Seção Prova Social */
.prova-social-section {
    background-color: var(--bg-secondary);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1.5rem;
    margin: 4rem auto;
    align-items: center;
    max-width: 1200px;
    justify-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background: #2d3436;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px 12px 0 0;
    opacity: 0.8;
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


/* Depoimentos Modernos */
.testimonials-modern {
    margin-top: 4rem;
}

/* Depoimento Principal */
.testimonial-main {
    position: relative;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 60px 50px;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow:
        0 25px 60px var(--shadow-dark),
        0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-primary);
}

.testimonial-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.author-info h4 {
    color: var(--accent-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.2rem 0;
    font-weight: 500;
}

.author-company {
    font-size: 0.85rem !important;
    opacity: 0.8;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(138, 43, 43, 0.3));
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card-modern {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 15px 35px var(--shadow-dark),
        0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px var(--shadow-dark),
        0 10px 25px var(--shadow-light);
    border-color: var(--accent-primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(138, 43, 43, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 4px 15px rgba(133, 52, 100, 0.3);
    transition: all 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(133, 52, 100, 0.4);
}

.author-avatar-main {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-primary);
    box-shadow: 0 6px 25px rgba(133, 52, 100, 0.4);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.author-avatar-main:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(133, 52, 100, 0.5);
}

.rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.card-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.card-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: var(--accent-secondary);
    opacity: 0.3;
}

.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.author-details h5 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.author-details small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Seção Sobre Mim */
.sobre-section {
    background-color: var(--bg-secondary);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.sobre-text {
    order: 2;
}

.sobre-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: start;
    position: sticky;
    top: 100px;
}

.sobre-profile-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sobre-profile-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.6s ease;
    z-index: 1;
}

.sobre-profile-image:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.sobre-profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sobre-paragraph {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
}

.sobre-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    opacity: 0.4;
}

.paragraph-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    position: relative;
}

.paragraph-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-secondary);
    border-radius: 1px;
}

.sobre-paragraph p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}


/* Seção E-book */
.ebook-section {
    background-color: var(--bg-secondary);
}

.ebook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.ebook-text {
    order: 2;
}

.ebook-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-cover-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.ebook-cover-image:hover {
    transform: translateY(-2px);
}


.ebook-title {
    font-size: 2rem !important;
    margin-bottom: 1.5rem;
}

.ebook-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ebook-benefits-list {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.ebook-benefits-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
    color: var(--text-muted);
}

.ebook-benefits-list li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.ebook-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.ebook-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    text-align: center;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-colored);
}

.amazon-link {
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    border: 2px solid #ff9900;
}

.amazon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.amazon-link:hover::before {
    left: 100%;
}

.amazon-link:hover {
    background: linear-gradient(135deg, #e68a00 0%, #e55a00 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.4), 0 5px 15px rgba(255, 153, 0, 0.2);
    border-color: #e68a00;
}

.download-link {
    background: var(--gradient-primary);
    border: 2px solid var(--accent-primary);
}

.download-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.download-link:hover::before {
    left: 100%;
}

.download-link:hover {
    background: linear-gradient(135deg, #a06b7d 0%, #8b5a6b 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-colored), 0 5px 15px var(--glow-accent);
    border-color: #a06b7d;
}

.ebook-link.saiba-mais {
    margin-top: 1.5rem;
    background: transparent;
    border: none;
    padding: 0;
}

.ebook-link.saiba-mais:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

/* Seção Como Posso Ajudar */
.ofertas-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.oferta-card {
    background: var(--gradient-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
    box-shadow: 0 15px 40px var(--shadow-dark), 0 5px 15px var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.oferta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px var(--glow-orange);
}

.oferta-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-dark), 0 10px 30px var(--shadow-colored);
    border-color: var(--accent-primary);
}

.oferta-card:hover::before {
    height: 6px;
    box-shadow: 0 0 20px var(--glow-orange);
}

.oferta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.oferta-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.oferta-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.oferta-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.oferta-link:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

/* Seção Meu Método */
.metodo-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.metodo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.metodo-image {
    flex: 0 0 500px;
}

.growth-path-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.metodo-text {
    flex: 1;
}

.metodo-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metodo-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-orange {
    color: var(--accent-vibrant);
    font-weight: 600;
}

.metodo-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pilar-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-dark), 0 5px 15px var(--shadow-colored);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 20px 20px 0 0;
}

.pilar-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-dark), 0 10px 25px var(--shadow-colored);
}

.pilar-card:hover::before {
    height: 5px;
    box-shadow: 0 0 15px var(--glow-secondary);
}

.pilar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pilar-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.pilar-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* Seção Pessoal */
.pessoal-section {
    background-color: white;
}

.philosophy-highlight {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

.personal-highlight {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

/* Seção Blog */
.blog-section {
    background-color: var(--bg-secondary);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.blog-card {
    background: var(--gradient-card);
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-dark), 0 5px 15px var(--shadow-colored);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 15px 30px var(--shadow-colored);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 1;
}

.blog-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog-image-placeholder span {
    font-size: 3rem;
    opacity: 0.8;
}

.blog-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-image-real:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.blog-image-link {
    display: block;
    transition: all 0.3s ease;
}

.blog-image-link:hover {
    transform: translateY(-2px);
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-date, .blog-read-time {
    font-weight: 500;
}

.blog-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-link:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-primary);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.blog-cta-button:hover {
    background-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 47, 55, 0.3);
}

/* Seção Redes Sociais */
.social-section {
    background-color: #f8f9fa;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.social-icon {
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
}

.linkedin-card .social-icon svg {
    color: #0077b5;
}

.instagram-card .social-icon svg {
    color: #e4405f;
}

.youtube-card .social-icon svg {
    color: #ff0000;
}

.social-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.social-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-stats {
    margin-bottom: 0.5rem;
}

.social-followers {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.social-arrow {
    margin-left: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.social-cta {
    text-align: center;
    margin-top: 2rem;
}

.social-cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.social-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4);
}

/* Seção Contato */
.contato-section {
    background-color: var(--bg-secondary);
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--glow-purple);
}

.contact-button {
    display: inline-block;
    background: var(--gradient-cta);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px var(--shadow-orange);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--orange-vibrant);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-orange), 0 5px 15px var(--glow-orange);
    border-color: var(--yellow-pastel);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

    .contact-link:hover {
        color: var(--text-primary);
        border-bottom-color: var(--accent-primary);
        transform: translateX(5px);
    }

    /* Tração Link Style */
    .tracao-link {
        color: var(--accent-primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .tracao-link:hover {
        color: var(--accent-secondary);
        text-decoration: underline;
    }

    /* Tração Logo Social Icon Mobile */
    .social-link.tracao {
        width: 45px;
        height: 45px;
    }

    .social-icon-image {
        width: 24px;
        height: 24px;
    }


/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        gap: 2rem;
        padding: 3rem 0;
        text-align: center;
    }

    .metodo-content {
        gap: 1.5rem;
    }

    .metodo-image {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }

    .growth-path-image {
        padding: 1rem;
    }

    .metodo-intro {
        font-size: 1rem;
        max-width: 100%;
    }

    .metodo-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
        text-shadow: 0 4px 15px var(--shadow-colored);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-bio {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .section {
        padding: 80px 0;
        min-height: auto;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1.2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
    }

    .logo-item {
        width: 100%;
        height: 120px;
        padding: 1rem;
        max-width: 140px;
        margin: 0 auto;
    }

    .company-logo {
        width: 100px;
        height: 100px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .blog-card {
        margin: 0 0.5rem;
        border-radius: 18px;
    }

    .blog-content {
        padding: 1.8rem;
    }

    .blog-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .sobre-text {
        order: 1;
        text-align: left;
    }

    .sobre-image {
        order: 2;
        position: static;
        text-align: center;
    }

    .sobre-profile-image {
        max-width: 300px;
        border-radius: 20px;
    }

    .paragraph-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .sobre-paragraph {
        margin-bottom: 2.5rem;
        padding-left: 1.5rem;
    }

    .sobre-paragraph p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ebook-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .ebook-text {
        order: 2;
        text-align: center;
    }

    .ebook-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .ebook-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .ebook-links {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .ebook-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        border-radius: 10px;
        min-width: 200px;
        text-align: center;
    }

    .ebook-image {
        order: 1;
        padding: 0 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .ebook-cover-image {
        max-width: 280px;
        border-radius: 15px;
    }

    .ofertas-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .oferta-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        margin: 0 0.5rem;
    }

    .oferta-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .oferta-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .oferta-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pilar-card {
        padding: 2rem;
        border-radius: 18px;
        margin: 0 0.5rem;
    }

    .pilar-icon {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .pilar-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .pilar-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }



    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .social-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-arrow {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .social-links {
        justify-content: center;
    }

    .testimonial-featured {
        padding: 40px 25px;
        margin-top: 3rem;
        border-radius: 16px;
    }

    .testimonial-featured::before {
        font-size: 5rem;
        top: -10px;
        left: 15px;
    }

    .testimonial-quote {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

    .testimonial-author span {
        font-size: 0.9rem;
    }

    /* Ajustes adicionais para menu mobile em telas muito pequenas */
    .nav-links {
        padding: 0.3rem 0.8rem;
        gap: 0.2rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.7rem 0.8rem;
        margin: 0.05rem 0;
    }

    .testimonials-additional {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card-modern {
        padding: 1.5rem;
    }

    .card-quote {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .author-details h5 {
        font-size: 1rem;
    }

    .author-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 1rem 0;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-bio {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .logo-item {
        width: 100%;
        height: 110px;
        padding: 0.8rem;
        max-width: 120px;
        margin: 0 auto;
    }

    .company-logo {
        width: 85px;
        height: 85px;
    }

    .profile-video {
        max-width: 300px;
    }


    .hero-title {
        font-size: 2rem;
    }

    .testimonial-main {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 18px;
        margin: 0 1rem 2rem 1rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .testimonial-rating {
        justify-content: flex-start;
    }

    .star {
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .testimonial-card-modern {
        padding: 2rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }

    .card-header {
        margin-bottom: 1rem;
    }

    .card-quote {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding-left: 0.8rem;
    }

    .card-quote::before {
        font-size: 1.5rem;
        left: -5px;
    }

    .author-details h5 {
        font-size: 1rem;
    }

    .author-details p {
        font-size: 0.85rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-text {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
}

/* Footer Styles */
.footer-section {
    background-color: var(--bg-primary);
    padding: 3rem 0 2rem 0;
    margin-top: 0;
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.footer-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.footer-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-separator {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .footer-link {
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 1.5rem 0 1rem 0;
        margin-top: 2rem;
    }

    .footer-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Tração Logo Social Icon Small Mobile */
    .social-link.tracao {
        width: 40px;
        height: 40px;
    }

    .social-icon-image {
        width: 20px;
        height: 20px;
    }
}
