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

:root {
    --rosa: #eb4566;
    --verde: #25baba;
    --branco: #ffffff;
    --cinza: #f8f9fa;
    --cinza-escuro: #6c757d;
    --preto: #212529;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--preto);
    background-color: var(--branco);
    overflow-x: hidden;
}

/* Animações globais */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animações otimizadas para mobile */
@keyframes floatMobile {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes pulseMobile {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

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

@keyframes slideInFromLeftMobile {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScaleMobile {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateInMobile {
    from {
        opacity: 0;
        transform: rotate(-90deg) scale(0.7);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceInMobile {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    70% {
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmerMobile {
    0% {
        background-position: -150% 0;
    }
    100% {
        background-position: 150% 0;
    }
}

/* Animações para tablet */
@keyframes floatTablet {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseTablet {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

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

@keyframes slideInFromRightTablet {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeftTablet {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScaleTablet {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateInTablet {
    from {
        opacity: 0;
        transform: rotate(-135deg) scale(0.6);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceInTablet {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    70% {
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTopTablet {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerTablet {
    0% {
        background-position: -180% 0;
    }
    100% {
        background-position: 180% 0;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: var(--branco);
    border-bottom: 1px solid var(--cinza);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Menu Hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--preto);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animação do hamburger quando ativo */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav a {
    text-decoration: none;
    color: var(--preto) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid var(--verde);
    background: rgba(255, 255, 255, 0.9);
}

.nav a:hover,
.nav a.active,
.nav a:focus,
.nav a:visited {
    color: var(--branco) !important;
    border-color: var(--rosa);
    background: var(--rosa);
}

.cta-button {
    background: var(--rosa);
    color: var(--branco);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #d13d5a;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: rgba(255, 255, 255, 0.95);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--rosa);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--preto);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    background: var(--rosa);
    color: var(--branco);
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cta:hover {
    background: #d13d5a;
    transform: translateY(-2px);
}

/* Hero Images Grid - Melhorias e Animações */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.image-large {
    grid-row: 1 / 3;
    background: var(--cinza);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--cinza);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.image-large::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.5s;
}

.image-large:hover::before {
    left: 100%;
}

.image-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--verde);
}

.image-square {
    background: var(--cinza);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--cinza);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.image-square:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--verde);
    background: var(--branco);
}

.image-small {
    background: var(--cinza);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--cinza);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.image-small:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--verde);
    background: var(--branco);
}

.image-large i,
.image-square i,
.image-small i {
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.image-large:hover i,
.image-square:hover i,
.image-small:hover i {
    transform: scale(1.1) rotateY(10deg);
    color: var(--rosa);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.image-large span,
.image-square span,
.image-small span {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.image-large:hover span,
.image-square:hover span,
.image-small:hover span {
    color: var(--preto);
    transform: translateY(-2px);
}

/* Animações de entrada */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-large {
    animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.image-square:first-of-type {
    animation: slideInFromRight 0.8s ease-out 0.4s both;
}

.image-square:last-of-type {
    animation: slideInFromRight 0.8s ease-out 0.6s both;
}

.image-small:first-of-type {
    animation: slideInFromLeft 0.8s ease-out 0.8s both;
}

.image-small:last-of-type {
    animation: slideInFromLeft 0.8s ease-out 1s both;
}

/* Efeito de pulso para os ícones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.image-large i,
.image-square i,
.image-small i {
    animation: pulse 2s ease-in-out infinite;
}

.image-large:hover i,
.image-square:hover i,
.image-small:hover i {
    animation: none;
}

/* Seção Vídeo */
.video-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.video-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--preto);
}

.video-container {
    margin-bottom: 2rem;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    border-radius: 12px;
    width: 100%;
    height: 450px;
}

.video-placeholder:hover {
    border-color: var(--rosa);
    background: var(--rosa);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 69, 102, 0.3);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--branco);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: var(--branco);
    transform: scale(1.1);
}

.video-placeholder span {
    font-size: 1.2rem;
    color: var(--branco);
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-placeholder:hover span {
    color: var(--branco);
}

/* Provas Sociais */
.social-proof {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--preto);
}

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

.proof-card {
    background: var(--verde);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--sombra);
    transition: all 0.3s ease;
    border: 1px solid var(--verde);
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--sombra-hover);
}

.proof-image {
    width: 80px;
    height: 80px;
    background: var(--rosa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.proof-image i {
    font-size: 2rem;
    color: var(--branco);
}

.proof-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--branco);
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.proof-card p {
    color: var(--branco);
    font-size: 0.9rem;
}

/* Descrição do Curso */
.course-description {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    position: relative;
    overflow: hidden;
}

.course-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain4" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain4)"/></svg>');
    animation: float 35s ease-in-out infinite;
}

.course-description h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--preto);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInFromTop 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--verde);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--sombra);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--verde);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.8s ease-out both;
}

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

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

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--sombra-hover);
    border-color: var(--rosa);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--rosa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    animation: rotateIn 1s ease-out 0.5s both;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 0 8px 20px rgba(235, 69, 102, 0.4);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--branco);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--branco);
    transition: all 0.4s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.benefit-card:hover h3 {
    transform: translateY(-2px);
}

.benefit-card p {
    color: var(--branco);
    line-height: 1.6;
    transition: all 0.4s ease;
}

.benefit-card:hover p {
    transform: translateY(-2px);
}

/* Animações sequenciais para os benefícios */
.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }

/* Para quem é o curso */
.target-audience {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    position: relative;
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain5" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain5)"/></svg>');
    animation: float 40s ease-in-out infinite reverse;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--preto);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: slideInFromTop 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.target-audience h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--rosa);
    transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.target-audience h2:hover::after {
    width: 100%;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--verde);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--verde);
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.8s ease-out both;
}

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

.audience-item:hover::before {
    left: 100%;
}

.audience-item:hover {
    transform: translateX(15px) scale(1.02);
    background: var(--rosa);
    color: var(--branco);
    border-color: var(--rosa);
    box-shadow: 0 15px 35px rgba(235, 69, 102, 0.3);
}

.audience-icon {
    width: 50px;
    height: 50px;
    background: var(--rosa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    animation: rotateIn 1s ease-out 0.5s both;
}

.audience-item:hover .audience-icon {
    background: var(--branco);
    transform: scale(1.1) rotateY(15deg);
}

.audience-icon i {
    font-size: 1.2rem;
    color: var(--branco);
    transition: all 0.4s ease;
}

.audience-item:hover .audience-icon i {
    color: var(--rosa);
    transform: scale(1.1);
}

.audience-item p {
    font-weight: 500;
    margin: 0;
    color: var(--branco);
    transition: all 0.4s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
    flex: 1;
}

.audience-item:hover p {
    transform: translateX(5px);
}

/* Animações sequenciais para os itens da audiência */
.audience-item:nth-child(1) { animation-delay: 0.2s; }
.audience-item:nth-child(2) { animation-delay: 0.4s; }
.audience-item:nth-child(3) { animation-delay: 0.6s; }
.audience-item:nth-child(4) { animation-delay: 0.8s; }

/* Como funciona a Jornada */
.journey {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain6" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain6)"/></svg>');
    animation: float 45s ease-in-out infinite;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.journey-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--preto);
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.journey-text p {
    font-size: 1.1rem;
    color: var(--preto);
    margin-bottom: 2rem;
    font-style: italic;
    animation: slideInFromLeft 1s ease-out 0.5s both;
}

.phases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phase {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateX(-30px);
}

.phase:hover {
    transform: translateX(15px) scale(1.02);
}

.phase-number {
    width: 40px;
    height: 40px;
    background: var(--rosa);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
}

.phase:hover .phase-number {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(235, 69, 102, 0.5);
}

.phase p {
    margin: 0;
    font-size: 1rem;
    color: var(--preto);
    transition: all 0.4s ease;
}

.phase:hover p {
    transform: translateX(8px);
}

.journey-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto);
    animation: slideInFromLeft 1s ease-out 0.7s both;
}

.journey-text p:last-of-type {
    color: var(--preto);
    animation: slideInFromLeft 1s ease-out 0.9s both;
}

.journey-image {
    background: var(--rosa);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--branco);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: slideInFromRight 1s ease-out 1s both;
}

.journey-image::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;
}

.journey-image:hover::before {
    left: 100%;
}

.journey-image:hover {
    transform: translateY(-10px) scale(1.03) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(235, 69, 102, 0.4);
}

.journey-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: pulse 3s ease-in-out infinite;
}

.journey-image:hover i {
    transform: scale(1.2) rotateY(15deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    animation: none;
}

.journey-image span {
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.4s ease;
}

.journey-image:hover span {
    transform: translateY(-3px);
}

/* Animações para cada fase */
.phase:nth-child(1) {
    animation: slideInFromLeft 0.8s ease-out 1.2s both;
}

.phase:nth-child(2) {
    animation: slideInFromLeft 0.8s ease-out 1.4s both;
}

.phase:nth-child(3) {
    animation: slideInFromLeft 0.8s ease-out 1.6s both;
}

.phase:nth-child(4) {
    animation: slideInFromLeft 0.8s ease-out 1.8s both;
}

.phase:nth-child(5) {
    animation: slideInFromLeft 0.8s ease-out 2s both;
}

/* Citação motivacional */
.quote {
    padding: 80px 0;
    background: var(--preto);
    color: var(--branco);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain7" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(37,186,186,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain7)"/></svg>');
    animation: float 50s ease-in-out infinite reverse;
}

.quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInScale 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--verde);
    font-style: normal;
    animation: slideInFromBottom 1s ease-out 0.6s both;
    position: relative;
    z-index: 2;
}

/* Bônus Exclusivos */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    position: relative;
    overflow: hidden;
}

.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain8" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain8)"/></svg>');
    animation: float 55s ease-in-out infinite;
}

.bonus h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--preto);
    animation: slideInFromTop 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.bonus-card {
    background: var(--verde);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--verde);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    animation: fadeInScale 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

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

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

.bonus-card:hover {
    transform: translateY(-8px) scale(1.03) rotateY(5deg);
    border-color: var(--rosa);
    box-shadow: 0 20px 50px rgba(235, 69, 102, 0.4);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: var(--rosa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
    animation: rotateIn 1s ease-out 0.5s both;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.2) rotateY(20deg);
    box-shadow: 0 10px 25px rgba(235, 69, 102, 0.5);
}

.bonus-icon i {
    font-size: 2rem;
    color: var(--branco);
    transition: all 0.5s ease;
}

.bonus-card:hover .bonus-icon i {
    transform: scale(1.2);
}

.bonus-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--branco);
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    transition: all 0.4s ease;
    padding: 0 0.5rem;
}

.bonus-card:hover h3 {
    transform: translateY(-3px);
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.bonus-card:hover .original-price {
    transform: scale(1.05);
}

.bonus-price {
    color: var(--rosa);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.bonus-card:hover .bonus-price {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animações sequenciais para os bônus */
.bonus-card:nth-child(1) { animation-delay: 0.2s; }
.bonus-card:nth-child(2) { animation-delay: 0.4s; }
.bonus-card:nth-child(3) { animation-delay: 0.6s; }
.bonus-card:nth-child(4) { animation-delay: 0.8s; }

/* Quem é Ana Mansur */
.instructor {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.instructor-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 4px solid var(--rosa);
    box-shadow: 0 10px 30px rgba(235, 69, 102, 0.3);
    transform: rotate(0deg);
}

.instructor-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--preto);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.instructor-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rosa);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instructor-text h2:hover::after {
    width: 100%;
}

.instructor-text p {
    font-size: 1.1rem;
    color: var(--preto);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Oferta e Preço */
.pricing {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.pricing h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--preto);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rosa);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing h2:hover::after {
    width: 100%;
}

.offer-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--verde);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid var(--verde);
    transition: all 0.3s ease;
    cursor: pointer;
}

.offer-item:hover {
    background: var(--rosa);
    border-color: var(--rosa);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 69, 102, 0.3);
}

.offer-item i {
    color: var(--branco);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.offer-item:hover i {
    color: var(--branco);
}

.offer-item span {
    color: var(--branco);
    transition: all 0.3s ease;
}

.offer-item:hover span {
    color: var(--branco);
}

.pricing-info {
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.original-price:hover {
    color: var(--rosa);
    transform: scale(1.05);
}

.current-price {
    color: var(--preto);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.installments {
    color: var(--preto);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cash-price {
    color: var(--rosa);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Garantia */
.guarantee {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--rosa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guarantee-icon:hover {
    background: var(--verde);
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 20px rgba(37, 186, 186, 0.4);
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--branco);
    transition: all 0.3s ease;
}

.guarantee-icon:hover i {
    color: var(--branco);
    transform: scale(1.1);
}

.guarantee-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--preto);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.guarantee-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rosa);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guarantee-text h2:hover::after {
    width: 100%;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--preto);
}

/* Seção de Persuasão Final */
.final-persuasion {
    padding: 80px 0;
    background: var(--preto);
    color: var(--branco);
    text-align: center;
}

.final-persuasion h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-persuasion p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--preto);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rosa);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq h2:hover::after {
    width: 100%;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-item {
    background: var(--verde);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--verde);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(10px);
    background: var(--rosa);
    color: var(--branco);
    border-color: var(--rosa);
    box-shadow: 0 8px 20px rgba(235, 69, 102, 0.3);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--branco);
    transition: all 0.3s ease;
}

.faq-item:hover h3 {
    color: var(--branco);
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--branco);
    transition: all 0.3s ease;
}

.faq-item:hover p {
    color: var(--branco);
}

/* Botões de contato */
/* Botões da seção FAQ agora são diretos, sem container */
.section-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.whatsapp-button {
    background: #25d366;
    color: var(--branco);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 37, 37, 0.3);
}

.email-button {
    background: #3b82f6;
    color: var(--branco);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.email-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;
}

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

.email-button:hover {
    background: #2563eb;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
}

/* Botão de pagamento */
.payment-button {
    background: var(--verde);
    color: var(--branco);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 186, 186, 0.3);
    backdrop-filter: blur(10px);
}

.payment-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;
}

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

.payment-button:hover {
    background: #1a9a9a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 186, 186, 0.4), 0 0 20px rgba(37, 186, 186, 0.2);
    backdrop-filter: blur(15px);
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section:first-child {
    grid-column: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--branco);
    font-size: 1rem;
}

.footer-section a {
    color: var(--cinza-escuro);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--rosa);
}

.footer-section p {
    color: var(--cinza-escuro);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-escuro);
    color: var(--cinza-escuro);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

/* Responsividade - Breakpoints Completos */

/* Tablet Landscape (1024px - 769px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .proofs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .image-grid {
        max-width: 350px;
    }
    
    .journey-content,
    .instructor-content {
        gap: 2.5rem;
    }
    
    /* Animações para Tablet Landscape - Usando animações originais */
    .hero-content h1 {
        animation: slideInFromTop 1s ease-out 0.3s both;
    }
    
    .hero-content h2 {
        animation: slideInFromBottom 1s ease-out 0.5s both;
    }
    
    .hero-content p {
        animation: slideInFromBottom 1s ease-out 0.7s both;
    }
    
    .hero-cta {
        animation: bounceIn 1s ease-out 0.9s both;
    }
    
    .image-grid {
        animation: fadeInScale 1.2s ease-out 1s both;
    }
    
    .image-large {
        animation: slideInFromLeft 0.8s ease-out 1.2s both;
    }
    
    .image-square {
        animation: slideInFromRight 0.8s ease-out 1.4s both;
    }
    
    .image-small:nth-child(3) {
        animation: slideInFromRight 0.8s ease-out 1.6s both;
    }
    
    .image-small:nth-child(4) {
        animation: slideInFromRight 0.8s ease-out 1.8s both;
    }
    
    .proof-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .proof-card:nth-child(1) { animation-delay: 0.2s; }
    .proof-card:nth-child(2) { animation-delay: 0.4s; }
    .proof-card:nth-child(3) { animation-delay: 0.6s; }
    .proof-card:nth-child(4) { animation-delay: 0.8s; }
    
    .benefit-card {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) { animation-delay: 0.6s; }
    
    .benefit-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .audience-item {
        animation: slideInFromLeft 0.8s ease-out both;
    }
    
    .audience-item:nth-child(1) { animation-delay: 0.2s; }
    .audience-item:nth-child(2) { animation-delay: 0.4s; }
    .audience-item:nth-child(3) { animation-delay: 0.6s; }
    .audience-item:nth-child(4) { animation-delay: 0.8s; }
    
    .audience-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .phase {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .phase:nth-child(1) { animation-delay: 0.2s; }
    .phase:nth-child(2) { animation-delay: 0.4s; }
    .phase:nth-child(3) { animation-delay: 0.6s; }
    .phase:nth-child(4) { animation-delay: 0.8s; }
    .phase:nth-child(5) { animation-delay: 1s; }
    
    .bonus-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .bonus-card:nth-child(1) { animation-delay: 0.2s; }
    .bonus-card:nth-child(2) { animation-delay: 0.4s; }
    .bonus-card:nth-child(3) { animation-delay: 0.6s; }
    .bonus-card:nth-child(4) { animation-delay: 0.8s; }
    
    .bonus-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .instructor-photo {
        animation: fadeInScale 1s ease-out 0.3s both;
    }
    
    .instructor-text h2 {
        animation: slideInFromLeft 0.8s ease-out 0.5s both;
    }
    
    .instructor-text p {
        animation: slideInFromBottom 0.8s ease-out 0.7s both;
    }
    
    .faq-item {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.2s; }
    .faq-item:nth-child(2) { animation-delay: 0.4s; }
    .faq-item:nth-child(3) { animation-delay: 0.6s; }
    .faq-item:nth-child(4) { animation-delay: 0.8s; }
}

/* Tablet Portrait (768px - 481px) */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 15px 30px;
        border-radius: 25px;
        min-width: 200px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInMenu 0.3s ease forwards;
    }
    
    .nav.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav.active a:nth-child(2) { animation-delay: 0.2s; }
    .nav.active a:nth-child(3) { animation-delay: 0.3s; }
    .nav.active a:nth-child(4) { animation-delay: 0.4s; }
    .nav.active a:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav .cta-button {
        background: var(--rosa);
        color: var(--branco);
        border: none;
        margin-top: 1rem;
    }
    
    /* Prevenir scroll quando menu estiver aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .image-grid {
        max-width: 300px;
    }
    
    .journey-content,
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .instructor-image {
        width: 250px;
        height: 250px;
    }
    
    .offer-items {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Melhorias específicas para tablet */
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Grids responsivos */
    .benefits-grid,
    .bonus-grid,
    .proofs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Cards responsivos */
    .benefit-card,
    .bonus-card,
    .proof-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .benefit-card h3,
    .bonus-card h3,
    .proof-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .benefit-card p,
    .bonus-card p,
    .proof-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Seções específicas */
    .course-description h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .target-audience h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .audience-item {
        padding: 1rem;
    }
    
    .audience-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Jornada */
    .journey-text h2 {
        font-size: 1.8rem;
    }
    
    .journey-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .phases {
        gap: 1rem;
    }
    
    .phase {
        padding: 0.8rem;
    }
    
    .phase p {
        font-size: 0.85rem;
    }
    
    /* Instrutor */
    .instructor-text h2 {
        font-size: 1.8rem;
    }
    
    .instructor-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Preços */
    .pricing h2 {
        font-size: 1.8rem;
    }
    
    .offer-items {
        gap: 1rem;
    }
    
    .offer-item {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .pricing-info {
        gap: 0.5rem;
    }
    
    .installments {
        font-size: 1.8rem;
    }
    
    .cash-price {
        font-size: 1.4rem;
    }
    
    /* FAQ */
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }
    
    /* Animações para Tablet Portrait - Usando animações originais */
    .hero-content h1 {
        animation: slideInFromTop 1s ease-out 0.3s both;
    }
    
    .hero-content h2 {
        animation: slideInFromBottom 1s ease-out 0.5s both;
    }
    
    .hero-content p {
        animation: slideInFromBottom 1s ease-out 0.7s both;
    }
    
    .hero-cta {
        animation: bounceIn 1s ease-out 0.9s both;
    }
    
    .image-grid {
        animation: fadeInScale 1.2s ease-out 1s both;
    }
    
    .image-large {
        animation: slideInFromLeft 0.8s ease-out 1.2s both;
    }
    
    .image-square {
        animation: slideInFromRight 0.8s ease-out 1.4s both;
    }
    
    .image-small:nth-child(3) {
        animation: slideInFromRight 0.8s ease-out 1.6s both;
    }
    
    .image-small:nth-child(4) {
        animation: slideInFromRight 0.8s ease-out 1.8s both;
    }
    
    .proof-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .proof-card:nth-child(1) { animation-delay: 0.2s; }
    .proof-card:nth-child(2) { animation-delay: 0.4s; }
    .proof-card:nth-child(3) { animation-delay: 0.6s; }
    .proof-card:nth-child(4) { animation-delay: 0.8s; }
    
    .benefit-card {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) { animation-delay: 0.6s; }
    
    .benefit-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .audience-item {
        animation: slideInFromLeft 0.8s ease-out both;
    }
    
    .audience-item:nth-child(1) { animation-delay: 0.2s; }
    .audience-item:nth-child(2) { animation-delay: 0.4s; }
    .audience-item:nth-child(3) { animation-delay: 0.6s; }
    .audience-item:nth-child(4) { animation-delay: 0.8s; }
    
    .audience-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .phase {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .phase:nth-child(1) { animation-delay: 0.2s; }
    .phase:nth-child(2) { animation-delay: 0.4s; }
    .phase:nth-child(3) { animation-delay: 0.6s; }
    .phase:nth-child(4) { animation-delay: 0.8s; }
    .phase:nth-child(5) { animation-delay: 1s; }
    
    .bonus-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .bonus-card:nth-child(1) { animation-delay: 0.2s; }
    .bonus-card:nth-child(2) { animation-delay: 0.4s; }
    .bonus-card:nth-child(3) { animation-delay: 0.6s; }
    .bonus-card:nth-child(4) { animation-delay: 0.8s; }
    
    .bonus-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .instructor-photo {
        animation: fadeInScale 1s ease-out 0.3s both;
    }
    
    .instructor-text h2 {
        animation: slideInFromLeft 0.8s ease-out 0.5s both;
    }
    
    .instructor-text p {
        animation: slideInFromBottom 0.8s ease-out 0.7s both;
    }
    
    .faq-item {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.2s; }
    .faq-item:nth-child(2) { animation-delay: 0.4s; }
    .faq-item:nth-child(3) { animation-delay: 0.6s; }
    .faq-item:nth-child(4) { animation-delay: 0.8s; }
}

/* Mobile (480px - 320px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        padding: 12px 16px;
        font-size: 0.8rem;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Image Grid */
    .image-grid {
        max-width: 280px;
        gap: 10px;
    }
    
    .image-large {
        padding: 1.5rem;
    }
    
    .image-square,
    .image-small {
        padding: 1rem;
    }
    
    .image-large i,
    .image-square i,
    .image-small i {
        font-size: 1.5rem;
    }
    
    /* Grids */
    .benefits-grid,
    .bonus-grid,
    .proofs-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Cards */
    .benefit-card,
    .bonus-card,
    .proof-card {
        padding: 1.2rem;
        min-height: auto;
    }
    
    .benefit-card h3,
    .bonus-card h3,
    .proof-card h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .benefit-card p,
    .bonus-card p,
    .proof-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Seções */
    .course-description h2,
    .target-audience h2,
    .journey-text h2,
    .instructor-text h2,
    .pricing h2,
    .faq h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .audience-item {
        padding: 0.8rem;
    }
    
    .audience-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Jornada */
    .phases {
        gap: 0.8rem;
    }
    
    .phase {
        padding: 0.6rem;
    }
    
    .phase p {
        font-size: 0.8rem;
    }
    
    /* Instrutor */
    .instructor-image {
        width: 180px;
        height: 180px;
    }
    
    .instructor-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Preços */
    .offer-item {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .installments {
        font-size: 1.5rem;
    }
    
    .cash-price {
        font-size: 1.2rem;
    }
    
    /* FAQ */
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 0.8rem;
    }
    
    /* Animações para Mobile - Usando animações originais */
    .hero-content h1 {
        animation: slideInFromTop 1s ease-out 0.3s both;
    }
    
    .hero-content h2 {
        animation: slideInFromBottom 1s ease-out 0.5s both;
    }
    
    .hero-content p {
        animation: slideInFromBottom 1s ease-out 0.7s both;
    }
    
    .hero-cta {
        animation: bounceIn 1s ease-out 0.9s both;
    }
    
    .image-grid {
        animation: fadeInScale 1.2s ease-out 1s both;
    }
    
    .image-large {
        animation: slideInFromLeft 0.8s ease-out 1.2s both;
    }
    
    .image-square {
        animation: slideInFromRight 0.8s ease-out 1.4s both;
    }
    
    .image-small:nth-child(3) {
        animation: slideInFromRight 0.8s ease-out 1.6s both;
    }
    
    .image-small:nth-child(4) {
        animation: slideInFromRight 0.8s ease-out 1.8s both;
    }
    
    .proof-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .proof-card:nth-child(1) { animation-delay: 0.2s; }
    .proof-card:nth-child(2) { animation-delay: 0.4s; }
    .proof-card:nth-child(3) { animation-delay: 0.6s; }
    .proof-card:nth-child(4) { animation-delay: 0.8s; }
    
    .benefit-card {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) { animation-delay: 0.6s; }
    
    .benefit-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .audience-item {
        animation: slideInFromLeft 0.8s ease-out both;
    }
    
    .audience-item:nth-child(1) { animation-delay: 0.2s; }
    .audience-item:nth-child(2) { animation-delay: 0.4s; }
    .audience-item:nth-child(3) { animation-delay: 0.6s; }
    .audience-item:nth-child(4) { animation-delay: 0.8s; }
    
    .audience-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .phase {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .phase:nth-child(1) { animation-delay: 0.2s; }
    .phase:nth-child(2) { animation-delay: 0.4s; }
    .phase:nth-child(3) { animation-delay: 0.6s; }
    .phase:nth-child(4) { animation-delay: 0.8s; }
    .phase:nth-child(5) { animation-delay: 1s; }
    
    .bonus-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .bonus-card:nth-child(1) { animation-delay: 0.2s; }
    .bonus-card:nth-child(2) { animation-delay: 0.4s; }
    .bonus-card:nth-child(3) { animation-delay: 0.6s; }
    .bonus-card:nth-child(4) { animation-delay: 0.8s; }
    
    .bonus-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .instructor-photo {
        animation: fadeInScale 1s ease-out 0.3s both;
    }
    
    .instructor-text h2 {
        animation: slideInFromLeft 0.8s ease-out 0.5s both;
    }
    
    .instructor-text p {
        animation: slideInFromBottom 0.8s ease-out 0.7s both;
    }
    
    .faq-item {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.2s; }
    .faq-item:nth-child(2) { animation-delay: 0.4s; }
    .faq-item:nth-child(3) { animation-delay: 0.6s; }
    .faq-item:nth-child(4) { animation-delay: 0.8s; }
}

/* Mobile Pequeno (320px - 240px) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    
    .image-grid {
        max-width: 250px;
    }
    
    .benefit-card,
    .bonus-card,
    .proof-card {
        padding: 1rem;
    }
    
    .course-description h2,
    .target-audience h2,
    .journey-text h2,
    .instructor-text h2,
    .pricing h2,
    .faq h2 {
        font-size: 1.3rem;
    }
    
    .instructor-image {
        width: 150px;
        height: 150px;
    }
    
    /* Animações para Mobile Pequeno - Usando animações originais */
    .hero-content h1 {
        animation: slideInFromTop 1s ease-out 0.3s both;
    }
    
    .hero-content h2 {
        animation: slideInFromBottom 1s ease-out 0.5s both;
    }
    
    .hero-content p {
        animation: slideInFromBottom 1s ease-out 0.7s both;
    }
    
    .hero-cta {
        animation: bounceIn 1s ease-out 0.9s both;
    }
    
    .image-grid {
        animation: fadeInScale 1.2s ease-out 1s both;
    }
    
    .image-large {
        animation: slideInFromLeft 0.8s ease-out 1.2s both;
    }
    
    .image-square {
        animation: slideInFromRight 0.8s ease-out 1.4s both;
    }
    
    .image-small:nth-child(3) {
        animation: slideInFromRight 0.8s ease-out 1.6s both;
    }
    
    .image-small:nth-child(4) {
        animation: slideInFromRight 0.8s ease-out 1.8s both;
    }
    
    .proof-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .proof-card:nth-child(1) { animation-delay: 0.2s; }
    .proof-card:nth-child(2) { animation-delay: 0.4s; }
    .proof-card:nth-child(3) { animation-delay: 0.6s; }
    .proof-card:nth-child(4) { animation-delay: 0.8s; }
    
    .benefit-card {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) { animation-delay: 0.6s; }
    
    .benefit-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .audience-item {
        animation: slideInFromLeft 0.8s ease-out both;
    }
    
    .audience-item:nth-child(1) { animation-delay: 0.2s; }
    .audience-item:nth-child(2) { animation-delay: 0.4s; }
    .audience-item:nth-child(3) { animation-delay: 0.6s; }
    .audience-item:nth-child(4) { animation-delay: 0.8s; }
    
    .audience-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .phase {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .phase:nth-child(1) { animation-delay: 0.2s; }
    .phase:nth-child(2) { animation-delay: 0.4s; }
    .phase:nth-child(3) { animation-delay: 0.6s; }
    .phase:nth-child(4) { animation-delay: 0.8s; }
    .phase:nth-child(5) { animation-delay: 1s; }
    
    .bonus-card {
        animation: fadeInScale 0.8s ease-out both;
    }
    
    .bonus-card:nth-child(1) { animation-delay: 0.2s; }
    .bonus-card:nth-child(2) { animation-delay: 0.4s; }
    .bonus-card:nth-child(3) { animation-delay: 0.6s; }
    .bonus-card:nth-child(4) { animation-delay: 0.8s; }
    
    .bonus-icon {
        animation: rotateIn 1s ease-out 0.5s both;
    }
    
    .instructor-photo {
        animation: fadeInScale 1s ease-out 0.3s both;
    }
    
    .instructor-text h2 {
        animation: slideInFromLeft 0.8s ease-out 0.5s both;
    }
    
    .instructor-text p {
        animation: slideInFromBottom 0.8s ease-out 0.7s both;
    }
    
    .faq-item {
        animation: slideInFromBottom 0.8s ease-out both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.2s; }
    .faq-item:nth-child(2) { animation-delay: 0.4s; }
    .faq-item:nth-child(3) { animation-delay: 0.6s; }
    .faq-item:nth-child(4) { animation-delay: 0.8s; }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proof-card,
.benefit-card,
.bonus-card,
.audience-item,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Otimização para preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-content h1,
    .hero-content h2,
    .hero-content p,
    .hero-cta,
    .image-grid,
    .image-large,
    .image-square,
    .image-small,
    .proof-card,
    .benefit-card,
    .audience-item,
    .phase,
    .bonus-card,
    .instructor-photo,
    .instructor-text h2,
    .instructor-text p,
    .faq-item {
        animation: none !important;
    }
}


/* ===== Mobile/Tablet Navigation Overlay ===== */
@media (max-width: 1024px) {
  .hamburger-menu { display: block; background: transparent; border: 0; }
  .cta-button { display: none; } /* mantém header limpo no mobile; CTA aparece nas seções */
  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1000;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    font-size: 1.1rem;
    padding: 12px 22px;
    border-width: 2px;
    border-radius: 999px;
    text-align: center;
  }
  .header .container {
    gap: 10px;
  }
  .logo-img {
    height: 42px;
  }
  .hamburger-icon {
    width: 28px;
    height: 20px;
  }
}

/* Smooth animation for hamburger icon state */
.hamburger-menu.active .hamburger-icon span {
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
