* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garantir que todos os elementos respeitem o container */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevenir scroll horizontal em mobile e desktop */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Garantir que o viewport não cause overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Garantir que imagens não quebrem layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    /* Paleta Rústica Clean */
    --beige-light: #F5F1EB;
    --beige-medium: #E8DFD4;
    --beige-dark: #D4C4B0;
    --cream: #F0EBE3;
    --cream-warm: #EDE6DC;
    --brown-light: #C9A882;
    --brown-medium: #8B6F47;
    --brown-dark: #6B4E37;
    --chocolate: #5D4037;
    --nude: #E6D5C3;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    --border-color: #D4C4B0;
    
    /* Efeitos */
    --paper-texture: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--cream-warm);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Mobile optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Prevenir zoom em inputs no iOS */
    -webkit-text-size-adjust: 100%;
}

/* Efeito de textura sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--paper-texture);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* DOBRA 1 - HERO */
.hero {
    position: relative;
    min-height: 90vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--beige-light);
    max-width: 100%;
    box-sizing: border-box;
}

.hero-background .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    border-radius: 0;
}

.hero-background img.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: sepia(15%) brightness(1.05) contrast(0.98);
    animation: fadeIn 1s ease-in;
}

/* Para imagens mais largas que altas - melhor centralização horizontal */
@media (min-width: 1400px) {
    .hero-background img.hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Para tablets - ajuste fino */
@media (max-width: 1024px) {
    .hero-background img.hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Otimização de imagens para mobile */
@media (max-width: 768px) {
    .hero-background img.hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        min-width: auto;
        min-height: auto;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(250, 247, 242, 0.5) 0%, rgba(245, 241, 235, 0.75) 100%);
    }
    
    /* Imagens responsivas */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .gabi-photo {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }
}

/* Para mobile pequeno - garantir imagem completa */
@media (max-width: 480px) {
    .hero-background img.hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        min-width: auto;
        min-height: auto;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(250, 247, 242, 0.55) 0%, rgba(245, 241, 235, 0.8) 100%);
    }
    
    .gabi-photo {
        max-height: none;
        object-fit: contain;
    }
    
    .gallery-image {
        width: 100%;
        height: auto;
        min-height: 240px;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }
    
    .gallery-item {
        min-height: 240px;
        overflow: visible;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 235, 227, 0.88) 0%, rgba(232, 223, 212, 0.75) 100%);
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero image já estilizada acima */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(237, 230, 220, 0.35) 0%, rgba(240, 235, 227, 0.65) 100%);
    z-index: 2;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 35px 30px;
    width: 100%;
    box-sizing: border-box;
}

.hero-headline {
    font-family: "League Spartan", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-align: left;
}

.hero-headline .highlight {
    color: var(--chocolate);
    position: relative;
}

.hero-subheadline {
    font-family: "League Spartan", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 400;
    text-align: justify;
}

/* Workshop Box */
.workshop-box {
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.workshop-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--paper-texture);
    border-radius: 12px;
    opacity: 0.3;
    pointer-events: none;
    max-width: 100%;
    box-sizing: border-box;
}

.workshop-box .box-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.workshop-box .box-info {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.workshop-box .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    color: var(--chocolate);
    display: inline-block;
    flex-shrink: 0;
}

/* Botões */
.btn-primary {
    background: var(--chocolate);
    color: var(--cream);
    border: none;
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    /* Touch optimization */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px; /* Tamanho mínimo para touch */
    display: inline-block;
    text-align: center;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: normal;
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 64, 55, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    background: var(--brown-dark);
}

/* Melhor feedback visual em touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:active {
        transform: scale(0.98);
        background: var(--brown-dark);
    }
}

.btn-large {
    padding: 25px 60px;
    font-size: 1.3rem;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-final {
    padding: 30px 70px;
    font-size: 1.4rem;
    margin-top: 30px;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-secondary {
    background: transparent;
    color: var(--chocolate);
    border: 2px solid var(--chocolate);
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    /* Touch optimization */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: normal;
}

.btn-secondary:hover {
    background: var(--chocolate);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: scale(0.98);
}

@media (hover: none) and (pointer: coarse) {
    .btn-secondary:active {
        transform: scale(0.98);
        background: var(--chocolate);
        color: var(--cream);
    }
}

.btn-subtext {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

/* DOBRA 2 - O QUE VOCÊ VAI APRENDER */
.what-you-learn {
    background: var(--cream-warm);
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-medium);
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 50px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.learn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
    width: 100%;
    box-sizing: border-box;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    /* Mobile optimization */
    -webkit-tap-highlight-color: transparent;
}

.learn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.1);
    border-color: var(--brown-medium);
}

@media (hover: none) and (pointer: coarse) {
    .learn-item:active {
        transform: scale(0.98);
    }
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--chocolate);
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-block;
}

.learn-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

.what-you-learn .btn-secondary {
    display: block;
    margin: 0 auto;
}

/* DOBRA 3 - SOBRE GABRIELA */
.about-gabi {
    background: var(--cream-warm);
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-text {
    position: relative;
    order: 1;
}

.about-image {
    order: 2;
    position: relative;
}

.about-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 30px;
    text-align: justify;
}

.about-description strong {
    color: var(--chocolate);
    font-weight: 700;
}

.quote-box {
    background: var(--beige-light);
    border-left: 4px solid var(--chocolate);
    padding: 30px;
    margin: 35px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.08);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--paper-texture);
    border-radius: 8px;
    opacity: 0.3;
    pointer-events: none;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--chocolate);
    font-weight: 600;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.about-image {
    position: relative;
}

.about-image .image-placeholder {
    border-radius: 12px;
    overflow: hidden;
    filter: sepia(15%) brightness(1.05) contrast(0.98);
    box-shadow: 0 10px 40px rgba(93, 64, 55, 0.15);
}

/* DOBRA 4 - PARA QUEM É */
.for-who {
    background: var(--beige-light);
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.for-who-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 50px;
    width: 100%;
    box-sizing: border-box;
}

.for-who-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    /* Mobile optimization */
    -webkit-tap-highlight-color: transparent;
}

.for-who-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.1);
    border-color: var(--brown-medium);
}

@media (hover: none) and (pointer: coarse) {
    .for-who-item:active {
        transform: scale(0.98);
    }
}

.for-who-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

.urgency-box {
    background: var(--beige-light);
    border: 2px solid var(--brown-medium);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 25px rgba(93, 64, 55, 0.15);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--paper-texture);
    border-radius: 12px;
    opacity: 0.3;
    pointer-events: none;
    max-width: 100%;
    box-sizing: border-box;
}

.urgency-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--chocolate);
}

.urgency-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--chocolate);
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-align: center;
}

.for-who .btn-primary {
    display: block;
    margin: 0 auto;
}

/* DOBRA 5 - O QUE VOCÊ RECEBE */
.what-you-get {
    background: var(--cream-warm);
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 50px;
    width: 100%;
    box-sizing: border-box;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--beige-medium);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    /* Mobile optimization */
    -webkit-tap-highlight-color: transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.1);
    border-color: var(--brown-medium);
}

@media (hover: none) and (pointer: coarse) {
    .benefit-item:hover {
        transform: none;
    }
    
    .benefit-item:active {
        transform: scale(0.98);
    }
}

.benefit-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--chocolate);
    display: inline-block;
}

.benefit-item p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: justify;
}

.what-you-get .btn-primary {
    display: block;
    margin: 0 auto;
}

/* DOBRA 6 - OPORTUNIDADE */
.opportunity {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--nude) 100%);
    padding: 80px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.opportunity-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 50px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: justify;
}

.opportunity-text strong {
    color: var(--chocolate);
    font-weight: 700;
}

/* Cronômetro */
.countdown-container {
    margin: 50px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.countdown-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: 25px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--beige-light);
    border: 2px solid var(--chocolate);
    border-radius: 12px;
    padding: 25px 30px;
    min-width: 100px;
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.15);
    box-sizing: border-box;
    flex-shrink: 0;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--chocolate);
    display: block;
    line-height: 1;
}

.countdown-label-small {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--chocolate);
    font-weight: bold;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--beige-medium) 0%, var(--beige-light) 100%);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    min-height: 500px;
    width: 100%;
    position: relative;
}

/* Removido para não conflitar com hero-background */

.about-image .image-placeholder {
    min-height: 600px;
}

.about-image {
    position: relative;
}

.gabi-photo {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(93, 64, 55, 0.15);
    filter: sepia(15%) brightness(1.02) contrast(0.98);
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.gabi-photo:hover {
    transform: scale(1.02);
}

.official-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--beige-light);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.2);
    border: 2px solid var(--border-color);
    z-index: 10;
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
}

.official-badge:hover {
    transform: scale(1.05);
}

.official-badge img {
    max-width: 180px;
    width: 180px;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: sepia(10%) brightness(1.02);
}


/* ============================================
   CARROSSEL MOBILE - SEÇÃO GABRIELA
   ============================================ */
.mobile-carousel {
    display: none;
    width: 100%;
    margin-top: 30px;
    position: relative;
}

/* Título do carrossel */
.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    padding: 25px 20px 20px;
    letter-spacing: -0.3px;
    width: 100%;
    box-sizing: border-box;
    background: var(--beige-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

/* Carrossel visível por padrão (mobile) */
.desktop-carousel {
    display: block;
}

/* No desktop, esconder o carrossel */
@media (min-width: 1025px) {
    .desktop-carousel,
    .mobile-carousel.desktop-carousel,
    .what-you-learn .desktop-carousel,
    .what-you-learn .mobile-carousel.desktop-carousel {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Ajustes específicos para desktop */
@media (min-width: 1025px) {
    .carousel-title {
        font-size: 2.8rem;
        padding: 30px 20px 25px;
    }
    
    /* Garantir que o carrossel está escondido no desktop */
    .desktop-carousel,
    .mobile-carousel.desktop-carousel {
        display: none !important;
    }
    
    .desktop-carousel .carousel-container {
        min-height: 550px;
        max-height: 650px;
        background: var(--beige-light);
        border: 1px solid var(--border-color);
        box-shadow: 0 5px 25px rgba(93, 64, 55, 0.15);
        padding: 0;
        margin: 0 auto;
        border-radius: 12px;
        overflow: visible;
        max-width: 1200px;
        width: 100%;
        position: relative;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .desktop-carousel .carousel-title {
        border-bottom: 1px solid var(--border-color);
    }
    
    .desktop-carousel .carousel-track {
        flex: 1;
        display: flex;
        width: auto;
        position: relative;
        overflow: visible;
    }
    
    .desktop-carousel .carousel-container {
        overflow: visible;
    }
    
    .desktop-carousel .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        min-height: 500px;
        max-height: 600px;
        background: var(--beige-light);
        padding: 20px;
        margin: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transform: none;
        position: relative;
        pointer-events: auto;
    }
    
    .desktop-carousel .carousel-slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 550px;
        min-height: 400px;
        object-fit: contain;
        object-position: center;
        border-radius: 0;
        background: var(--beige-light);
        margin: 0 auto;
        padding: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-sizing: border-box;
    }
    
    .desktop-carousel .carousel-controls {
        padding: 12px 20px;
        background: var(--beige-light);
        border-top: 1px solid var(--border-color);
        border-radius: 0 0 12px 12px;
        margin-top: -1px;
        gap: 12px;
    }
    
    .desktop-carousel .carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .desktop-carousel .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .desktop-carousel .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .desktop-carousel .carousel-dot.active {
        width: 12px;
        height: 12px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(93, 64, 55, 0.15);
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    min-height: 400px;
    max-height: 500px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


/* Garantir que o carrossel com título apareça no mobile */
.mobile-carousel.desktop-carousel {
    display: block !important;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    flex: 1;
    overflow: visible;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: visible;
    margin: 0;
    box-sizing: border-box;
    background: var(--beige-light);
    flex: 1;
    min-height: 350px;
}

.carousel-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0;
    filter: sepia(10%) brightness(1.02) contrast(0.98);
    background: var(--beige-light);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--beige-light);
    border-top: 1px solid var(--border-color);
    gap: 12px;
}

.carousel-btn {
    background: var(--chocolate);
    color: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 2px 6px rgba(93, 64, 55, 0.15);
}

.carousel-btn:hover {
    background: var(--brown-dark);
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(93, 64, 55, 0.25);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--brown-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
    background: var(--chocolate);
    border-color: var(--chocolate);
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}

/* Galeria de Trabalhos */
.gallery-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 5px 25px rgba(93, 64, 55, 0.15);
    transition: all 0.4s ease;
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    /* Mobile optimization */
    -webkit-tap-highlight-color: transparent;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(93, 64, 55, 0.25);
}

@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
}

.gallery-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: sepia(10%) brightness(1.03) contrast(0.97);
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.03);
    filter: sepia(5%) brightness(1.05) contrast(0.99);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Tablet Landscape (1024px e abaixo) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .carousel-title {
        font-size: 2.2rem;
        padding: 20px 15px 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* No mobile: texto primeiro, imagem depois */
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    /* Esconder badge e foto principal no mobile, mostrar apenas carrossel */
    .official-badge {
        display: none !important;
    }
    
    .gabi-photo {
        display: none !important;
    }
    
    /* Esconder qualquer imagem direta dentro de about-image, exceto as do carrossel */
    .about-image > img {
        display: none !important;
    }
    
    .about-image > .official-badge {
        display: none !important;
    }
    
    /* Mostrar o carrossel no mobile/tablet (max-width: 1024px) */
    .mobile-carousel.desktop-carousel {
        display: block !important;
        margin-top: 40px !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    /* Garantir que o carrossel apareça */
    .what-you-learn .mobile-carousel.desktop-carousel {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* No mobile, o carrossel deve funcionar como mobile-carousel */
    .mobile-carousel.desktop-carousel .carousel-container {
        min-height: 400px;
        max-height: 500px;
        overflow: hidden;
    }
    
    .mobile-carousel.desktop-carousel .carousel-track {
        display: flex !important;
        width: auto !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: 350px !important;
        max-height: 450px !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: relative !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide.active,
    .mobile-carousel.desktop-carousel .carousel-slide.prev,
    .mobile-carousel.desktop-carousel .carousel-slide.next {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Esconder o carrossel duplicado em about-gabi no mobile, já que o principal já tem o título */
    .about-image .mobile-carousel {
        display: none !important;
    }
    
    .learn-list,
    .for-who-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .official-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .official-badge img {
        max-width: 140px;
    }
    
    .what-you-learn,
    .about-gabi,
    .for-who,
    .what-you-get,
    .opportunity {
        padding: 70px 0;
    }
}

/* Tablet Portrait (768px e abaixo) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 85vh;
        max-height: 95vh;
        padding: 50px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mostrar o carrossel no tablet */
    .mobile-carousel.desktop-carousel {
        display: block !important;
        margin-top: 30px !important;
    }
    
    /* Mostrar apenas o mobile-carousel puro */
    .mobile-carousel:not(.desktop-carousel) {
        display: block !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-track {
        display: flex !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide.active,
    .mobile-carousel.desktop-carousel .carousel-slide.prev,
    .mobile-carousel.desktop-carousel .carousel-slide.next {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-headline {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: -0.3px;
    }
    
    .hero-subheadline {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .workshop-box {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .workshop-box .box-label {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .workshop-box .box-info {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .carousel-title {
        font-size: 1.8rem;
        padding: 18px 15px 15px;
        display: block !important;
    }
    
    .section-description {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    
    .learn-item,
    .for-who-item {
        padding: 18px;
        gap: 12px;
    }
    
    .learn-item p,
    .for-who-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .check-icon {
        width: 22px;
        height: 22px;
        margin-top: 3px;
    }
    
    .about-description {
        font-size: 1.15rem;
        line-height: 1.8;
    }
    
    .quote-box {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .quote-text {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 15px;
    }
    
    .benefit-item p {
        font-size: 1.1rem;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 12px;
        margin: 25px 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 18px 15px;
        flex: 1 1 calc(25% - 12px);
        max-width: 90px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label-small {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 -5px;
    }
    
    .countdown-label {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        padding: 18px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-large {
        padding: 20px 35px;
        font-size: 1.15rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-final {
        padding: 22px 35px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 100%;
        margin-top: 25px;
        box-sizing: border-box;
    }
    
    .btn-secondary {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-subtext {
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        min-height: 260px;
        max-height: none;
    }
    
    .gallery-item {
        min-height: 260px;
    }
    
    .gallery-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .gallery-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .gabi-photo {
        display: none !important;
    }
    
    .official-badge {
        display: none !important;
    }
    
    /* Garantir que o carrossel duplicado não apareça */
    .about-image .mobile-carousel {
        display: none !important;
    }
    
    .urgency-box {
        padding: 25px 20px;
        margin: 0 auto 30px;
    }
    
    .urgency-text {
        font-size: 1.15rem;
        line-height: 1.6;
    }
    
    .opportunity-text {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    
    .what-you-learn,
    .about-gabi,
    .for-who,
    .what-you-get,
    .opportunity {
        padding: 50px 0;
    }
}

/* Mobile Large (480px e abaixo) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 80vh;
        max-height: 90vh;
        padding: 35px 0;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    /* Mostrar o carrossel no mobile */
    .mobile-carousel.desktop-carousel {
        display: block !important;
        margin-top: 25px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-container {
        min-height: 350px;
        max-height: 450px;
    }
    
    .mobile-carousel.desktop-carousel .carousel-track {
        display: flex !important;
        width: 100% !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: 300px !important;
        max-height: 400px !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: relative !important;
    }
    
    .mobile-carousel.desktop-carousel .carousel-slide.active,
    .mobile-carousel.desktop-carousel .carousel-slide.prev,
    .mobile-carousel.desktop-carousel .carousel-slide.next {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-headline {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 18px;
        letter-spacing: -0.2px;
    }
    
    .hero-subheadline {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 25px;
    }
    
    .workshop-box {
        padding: 18px 15px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .workshop-box .box-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .workshop-box .box-info {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .workshop-box .icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
        line-height: 1.25;
    }
    
    .carousel-title {
        font-size: 1.6rem;
        padding: 15px 12px 12px;
        display: block !important;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 30px;
    }
    
    .learn-item,
    .for-who-item {
        padding: 15px;
        gap: 10px;
        border-radius: 6px;
    }
    
    .learn-item p,
    .for-who-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }
    
    .about-description {
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 25px;
    }
    
    .quote-box {
        padding: 20px 15px;
        margin: 20px 0;
        border-left-width: 3px;
    }
    
    .quote-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .benefit-item {
        padding: 18px 15px;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .benefit-icon {
        width: 22px;
        height: 22px;
    }
    
    .countdown-container {
        margin: 35px 0;
    }
    
    .countdown-label {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .countdown {
        gap: 8px;
        margin: 20px 0;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px 10px;
        flex: 1 1 calc(25% - 8px);
        max-width: 75px;
        border-radius: 10px;
    }
    
    .countdown-number {
        font-size: 1.7rem;
    }
    
    .countdown-label-small {
        font-size: 0.75rem;
        margin-top: 5px;
    }
    
    .countdown-separator {
        font-size: 1.3rem;
        margin: 0 -3px;
    }
    
    .btn-primary {
        padding: 16px 25px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .btn-large {
        padding: 18px 25px;
        font-size: 1.05rem;
    }
    
    .btn-final {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .btn-subtext {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        min-height: 230px;
        max-height: none;
    }
    
    .gallery-item {
        min-height: 230px;
    }
    
    .gallery-section {
        margin-top: 40px;
        padding-top: 35px;
    }
    
    .urgency-box {
        padding: 20px 15px;
        margin: 0 auto 25px;
        border-radius: 10px;
    }
    
    .urgency-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 12px;
    }
    
    .urgency-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .opportunity-text {
        font-size: 1.1rem;
        line-height: 1.75;
        margin-bottom: 30px;
    }
    
    .what-you-learn,
    .about-gabi,
    .for-who,
    .what-you-get,
    .opportunity {
        padding: 45px 0;
    }
    
    .official-badge {
        bottom: 8px;
        right: 8px;
        padding: 5px;
    }
    
    .official-badge img {
        max-width: 100px;
        width: 100px;
    }
}

/* Mobile Small (360px e abaixo) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 12px 8px;
        max-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label-small {
        font-size: 0.7rem;
    }
    
    .btn-primary,
    .btn-large,
    .btn-final {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .gallery-image {
        min-height: 210px;
        max-height: none;
    }
    
    .gallery-item {
        min-height: 210px;
    }
}
