:root {
            --color-primary-dark: #5F1020;
            --color-primary-darker: #700015;
            --color-highlight: #FE5979;
            --color-highlight-dark: #d64b64;
            --color-highlight-light: #ff597b;
            --color-support: #FFA4BE;
            --color-support-light: #ffb7cc;
            --color-bg: #fcf5f5;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            background-color: var(--color-bg);
            margin: 0;
            padding: 0;
            letter-spacing: -0.01em;
        }

        .icon-svg {
            width: 1em;
            height: 1em;
            display: block;
            flex-shrink: 0;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-svg.icon-fill {
            fill: currentColor;
            stroke: none;
        }

        .menu-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Remover rolagem do documento; rolar apenas dentro de .scroll-container */
        html,
        body {
            height: 100%;
            max-height: 100%;
            overflow: hidden;
            overflow-x: hidden;
            overscroll-behavior: none;
            margin: 0;
            padding: 0;
        }

        .scroll-container {
            height: 100vh;
            overflow-y: auto;
            overflow-x: hidden;
            scroll-snap-type: y mandatory;
            /* snap obrigatório para parar nas seções */
            scroll-behavior: smooth;
            position: relative;
            overscroll-behavior: contain;
            max-height: 100vh;
            /* limita a altura máxima */
        }

        /* Ocultar barra de rolagem do container (sem afetar a rolagem) */
        .scroll-container {
            scrollbar-width: none;
        }

        .scroll-container::-webkit-scrollbar {
            display: none;
        }

        .section {
            min-height: 100vh;
            scroll-snap-align: start;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            width: 100%;
            isolation: isolate;
            /* evita que elementos absolutos da seção anterior vazem visualmente */
        }

        /* Seção de Contato fixa na viewport para evitar faixa branca no overscroll */
        #contato.section {
            min-height: 100vh;
            height: 100vh;
            max-height: 100vh;
            padding-top: 72px;
            padding-bottom: 12px;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        @media (max-width: 480px) {
            #contato.section {
                height: auto;
                max-height: none;
                min-height: 100vh;
                padding-top: 40px;
                padding-bottom: 10px;
                overflow: visible;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            /* Ajustes do footer para mobile */
            footer {
                margin-top: 10px;
                padding: 15px 10px !important;
            }

            .social-icon {
                width: 35px;
                height: 35px;
                margin: 0 0.2rem;
            }

            /* Título da seção contato mais compacto */
            #contato h2 {
                font-size: clamp(1.5rem, 5vw, 2rem) !important;
                margin-bottom: 8px !important;
            }

            #contato p {
                font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
                margin-bottom: 15px !important;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            #contato.section {
                padding-top: 60px;
                padding-bottom: 20px;
                min-height: 100vh;
            }

            footer {
                margin-top: 15px;
            }
        }

        /* Compactação para desktop com pouca altura útil (widescreen/zoom) */
        @media (min-width: 1024px) and (max-height: 920px) {
            #contato.section {
                padding-top: 64px;
                padding-bottom: 8px;
            }

            #contato .max-w-3xl {
                margin-top: 3rem;
            }

            #contato .max-w-3xl>.text-center {
                margin-bottom: 0.75rem !important;
            }

            #contato .contact-card {
                padding-top: 1.75rem !important;
                padding-bottom: 1.25rem !important;
            }

            #contato footer {
                margin-top: 0.25rem !important;
                padding-top: 0.75rem !important;
                padding-bottom: 0.5rem !important;
            }

            #contato footer .mb-6 {
                margin-bottom: 0.75rem !important;
            }
        }

        /* Ensure content is visible */
        .section-content {
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            z-index: 10;
            position: relative;
            opacity: 1;
            visibility: visible;
            margin: 0 auto;
        }

        @media (max-width: 480px) {
            .section-content {
                padding: 0 15px;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .section-content {
                padding: 0 20px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .section-content {
                padding: 0 30px;
            }
        }

        @media (min-width: 1025px) {
            .section-content {
                padding: 0 40px;
                max-width: 1400px;
            }
        }

        /* Garantir fundo sólido na seção Doces para não mostrar conteúdo por baixo */
        #doces {
            background-color: var(--color-bg);
        }

        h1,
        h2,
        h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            /* todos os títulos em negrito */
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 700;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 700;
        }

        p {
            font-size: clamp(0.875rem, 2vw, 1.125rem);
            line-height: 1.6;
            font-weight: 400;
        }

        .text-lg {
            font-size: clamp(1rem, 2.2vw, 1.25rem);
            line-height: 1.6;
        }

        .text-xl {
            font-size: clamp(1.125rem, 2.5vw, 1.5rem);
            line-height: 1.5;
        }

        .text-2xl {
            font-size: clamp(1.25rem, 3vw, 2rem);
            line-height: 1.4;
        }

        /* Tipografia responsiva adicional */
        @media (max-width: 480px) {
            h1 {
                font-size: clamp(2rem, 7vw, 2.5rem);
                line-height: 1.1;
                margin-bottom: 1rem;
            }

            h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
                line-height: 1.2;
                margin-bottom: 0.75rem;
            }

            h3 {
                font-size: clamp(1.125rem, 5vw, 1.5rem);
                line-height: 1.3;
                margin-bottom: 0.5rem;
            }

            p {
                font-size: clamp(0.875rem, 3.5vw, 1rem);
                line-height: 1.5;
                margin-bottom: 1rem;
            }

            .text-lg {
                font-size: clamp(0.875rem, 3.5vw, 1.125rem);
            }

            .text-xl {
                font-size: clamp(1rem, 4vw, 1.25rem);
            }

            .text-2xl {
                font-size: clamp(1.125rem, 4.5vw, 1.5rem);
            }
        }

        .header-transparent {
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .header-solid {
            background-color: var(--color-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .hero-overlay {
            background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
        }

        .sweet-card {
            overflow: hidden;
            position: relative;
            border-radius: 0.5rem;
        }

        @media (min-width: 768px) {
            .sweet-card {
                border-radius: 0.75rem;
            }
        }

        .sweet-card img {
            transition: transform 0.5s ease;
        }

        .sweet-card:hover img {
            transform: scale(1.1);
        }

        .sweet-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(95, 16, 32, 0.8);
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: .5s ease;
        }

        .sweet-card:hover .overlay {
            height: 30%;
        }

        .event-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            height: 280px;
        }

        @media (min-width: 481px) {
            .event-card {
                height: 300px;
            }
        }

        @media (min-width: 769px) {
            .event-card {
                height: 320px;
            }
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
            z-index: 1;
        }

        .event-card>img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

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

        .event-card h3 {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 700;
            color: white !important;
        }

        .event-card .bg-white {
            background: rgba(255, 255, 255, 0.98) !important;
            -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .testimonial-card {
            min-width: 300px;
            margin-right: 1rem;
        }

        .carousel-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            /* Firefox */
        }

        .carousel-container::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        /* ===== Carrossel de Depoimentos ===== */
        .testimonials-carousel {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto 0 auto;
            padding: 0 80px;
            /* espaço adequado para as setas */
            overflow: visible;
            /* permite que as setas apareçam */
        }

        .carousel-inner {
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            /* sombra mais sutil */
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .testimonial-slide {
            min-width: 100%;
            background: white;
            padding: 40px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 300px;
            position: relative;
        }

        .testimonial-slide::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 80px;
            color: var(--color-support);
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
            opacity: 0.3;
            font-weight: 300;
        }

        .testimonial-slide::after {
            content: '"';
            position: absolute;
            bottom: 20px;
            right: 40px;
            font-size: 80px;
            color: var(--color-support);
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
            opacity: 0.3;
            font-weight: 300;
        }

        .testimonial-quote {
            font-size: clamp(1.125rem, 2.5vw, 1.375rem);
            font-style: italic;
            line-height: 1.7;
            color: #333;
            margin-bottom: 24px;
            max-width: 700px;
            position: relative;
            z-index: 1;
            font-weight: 400;
            font-family: 'Cormorant Garamond', serif;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--color-primary-darker);
            font-size: clamp(1rem, 2.2vw, 1.125rem);
            position: relative;
            z-index: 1;
            font-family: 'Inter', sans-serif;
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 20;
            color: var(--color-primary-darker);
            font-size: 18px;
        }

        .carousel-controls:hover {
            background: var(--color-highlight);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .carousel-prev {
            left: 10px;
            /* posição visível mas fora da área de texto */
        }

        .carousel-next {
            right: 10px;
            /* posição visível mas fora da área de texto */
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 15;
            /* acima do track para ficar sempre visível */
            pointer-events: auto;
            /* garante que seja clicável */
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background: var(--color-highlight);
            transform: scale(1.2);
        }

        /* Responsividade do carrossel */
        @media (max-width: 480px) {
            .testimonials-carousel {
                padding: 0 60px;
            }

            .testimonial-slide {
                padding: 25px 30px;
                min-height: 250px;
            }

            .testimonial-slide::before,
            .testimonial-slide::after {
                font-size: 50px;
            }

            .testimonial-slide::before {
                top: 10px;
                left: 15px;
            }

            .testimonial-slide::after {
                bottom: 10px;
                right: 15px;
            }

            .carousel-controls {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .carousel-prev {
                left: 2px;
            }

            .carousel-next {
                right: 2px;
            }

            .testimonial-quote {
                font-size: clamp(1rem, 4vw, 1.125rem);
            }

            .testimonial-author {
                font-size: clamp(0.875rem, 3vw, 1rem);
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .testimonials-carousel {
                padding: 0 70px;
            }

            .testimonial-slide {
                padding: 30px 40px;
                min-height: 280px;
            }

            .testimonial-slide::before,
            .testimonial-slide::after {
                font-size: 60px;
            }

            .testimonial-slide::before {
                top: 15px;
                left: 20px;
            }

            .testimonial-slide::after {
                bottom: 15px;
                right: 20px;
            }

            .carousel-controls {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .carousel-prev {
                left: 5px;
            }

            .carousel-next {
                right: 5px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .testimonials-carousel {
                padding: 0 75px;
            }

            .testimonial-slide {
                padding: 35px 50px;
                min-height: 290px;
            }
        }

        /* AOS dentro de container customizado: garantir visibilidade */
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        /* Custom button styling */
        .btn-primary {
            background-color: var(--color-highlight);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--color-highlight-dark);
            transform: translateY(-2px);
        }

        /* Form styling */
        /* ===== Form Modern (Contato) ===== */
        .contact-decor::before,
        .contact-decor::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.25;
            z-index: 0;
        }

        .contact-decor::before {
            width: 420px;
            height: 420px;
            background: radial-gradient(closest-side, var(--color-highlight) 0%, transparent 70%);
            top: -80px;
            left: -80px;
        }

        .contact-decor::after {
            width: 520px;
            height: 520px;
            background: radial-gradient(closest-side, var(--color-support) 0%, transparent 70%);
            bottom: -120px;
            right: -120px;
        }

        /* Evita que os pseudo-elementos do bloco Contato aumentem a altura rolável */
        .contact-decor {
            overflow: hidden;
        }

        .contact-card {
            position: relative;
            background: rgba(255, 255, 255, 0.92);
            -webkit-backdrop-filter: saturate(120%) blur(8px);
            backdrop-filter: saturate(120%) blur(8px);
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
            z-index: 1;
        }

        @media (max-width: 480px) {
            .contact-card {
                border-radius: 15px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }
        }

        .contact-card::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            /* espessura do contorno */
            border-radius: inherit;
            background: linear-gradient(135deg, var(--color-highlight), var(--color-support));
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            /* cria borda gradiente */
            z-index: -1;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 640px) {
            .form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }

            .form-field.span-2 {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 480px) {
            .form-grid {
                gap: 12px;
            }

            .contact-card {
                margin: 10px;
                padding: 20px !important;
            }
        }

        .form-field {
            position: relative;
        }

        .form-input {
            width: 100%;
            border: 1.5px solid rgba(0, 0, 0, 0.12);
            background: #fff;
            border-radius: 12px;
            padding: 16px 44px 14px 44px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
            font-size: 16px;
            /* Previne zoom no iOS */
        }

        @media (max-width: 480px) {
            .form-input {
                padding: 12px 35px 10px 35px;
                border-radius: 8px;
                font-size: 14px;
            }

            .field-icon {
                left: 10px;
                font-size: 14px;
            }

            .form-label {
                left: 35px;
                font-size: 13px;
            }

            .btn-primary {
                padding: 10px 20px !important;
                font-size: 14px !important;
                margin-top: 15px !important;
            }
        }

        .form-input:focus {
            border-color: var(--color-highlight);
            box-shadow: 0 0 0 4px rgba(254, 89, 121, 0.15);
        }

        .form-label {
            position: absolute;
            left: 44px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            pointer-events: none;
            transition: all .18s ease;
            background: transparent;
            padding: 0 6px;
        }

        /* flutua quando digita, foca ou tem valor */
        .form-input:focus+.form-label,
        .form-input:not(:placeholder-shown)+.form-label,
        .form-input.has-value+.form-label,
        textarea.form-input:focus+.form-label,
        textarea.form-input:not(:placeholder-shown)+.form-label {
            top: 0;
            transform: translateY(-50%) scale(0.9);
            color: var(--color-primary-darker);
            background: #fff;
        }

        .field-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-primary-darker);
            opacity: .85;
            width: 16px;
            height: 16px;
        }

        /* Ajustes específicos */
        select.form-input {
            -webkit-appearance: none;
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="%235F1020"><path d="M5.25 7.5L10 12.25 14.75 7.5" stroke="%235F1020" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 44px;
        }

        /* Select não deve iniciar com rótulo flutuado */
        select.form-input:not(.has-value):not(:focus)+.form-label {
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            background: transparent;
        }

        /* Botão do select customizado também não deve iniciar flutuado */
        .custom-select-btn:not(.has-value):not(:focus)+.form-label {
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            background: transparent;
        }

        /* ===== Custom Select (lista estilizada) ===== */
        .custom-select {
            position: relative;
        }

        .custom-select-btn {
            cursor: pointer;
            text-align: left;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="%235F1020"><path d="M5.25 7.5L10 12.25 14.75 7.5" stroke="%235F1020" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 44px;
        }

        .custom-select.open .custom-select-btn {
            border-color: var(--color-highlight);
            box-shadow: 0 0 0 4px rgba(254, 89, 121, 0.15);
        }

        .custom-select-list {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 12px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            max-height: 260px;
            overflow: auto;
            z-index: 50;
            display: none;
        }

        .custom-select.open .custom-select-list {
            display: block;
        }

        .custom-select-item {
            padding: 12px 14px;
            cursor: pointer;
            transition: background-color .15s ease;
        }

        .custom-select-item:hover,
        .custom-select-item[aria-selected="true"] {
            background-color: rgba(254, 89, 121, 0.08);
        }

        textarea.form-input {
            min-height: 120px;
            resize: vertical;
            padding-left: 16px;
        }

        @media (max-width: 480px) {
            textarea.form-input {
                min-height: 80px;
                padding: 10px 12px;
                font-size: 14px;
            }

            textarea.form-input+.form-label {
                left: 12px;
                font-size: 13px;
            }

            .textarea-field {
                margin-top: 12px;
            }
        }

        .helper {
            font-size: 12px;
            color: #666;
            margin-top: 4px;
        }

        /* dar respiro extra antes do textarea, pois o rótulo flutua sobre a borda */
        .textarea-field {
            margin-top: 18px;
        }

        /* Social media icons */
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            color: var(--color-primary-darker);
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--color-highlight);
            color: white;
            transform: translateY(-3px);
        }

        .social-icon .icon-svg {
            width: 1.15rem;
            height: 1.15rem;
        }

        /* Floating button */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background-color: var(--color-highlight);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(254, 89, 121, 0.4);
            transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .floating-btn .icon-svg,
        .carousel-controls .icon-svg {
            width: 1.1rem;
            height: 1.1rem;
        }

        .floating-btn:hover {
            background-color: var(--color-highlight-dark);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(254, 89, 121, 0.6);
        }

        .floating-btn.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* Active menu link */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link.active {
            color: var(--color-highlight);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-highlight);
        }

        /* Logo color */
        .logo-text {
            color: var(--color-highlight);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        /* Navigation links */
        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
            color: #000;
        }

        /* Button text */
        .btn-primary {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        @media (max-width: 480px) {
            .btn-primary {
                font-size: 14px;
                padding: 12px 24px;
            }
        }

        /* Hero section specific typography */
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            font-size: clamp(2.5rem, 6vw, 4rem);
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: -0.01em;
            opacity: 0.95;
            font-size: clamp(1.125rem, 3vw, 1.5rem);
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: clamp(2rem, 8vw, 2.75rem);
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.25rem);
                margin-bottom: 2rem;
            }
        }

        /* Rodapé agora faz parte da seção Contato; remover snap específico */
        /* footer {
            scroll-snap-align: start;
        } */

        /* Navigation dots */
        .nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            position: relative;
        }

        /* Área de toque maior para mobile */
        .nav-dot::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
        }

        .nav-dot:hover {
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
        }

        .nav-dot.active {
            background-color: var(--color-highlight);
            border-color: #fff;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.25);
            transform: scale(1.2);
        }

        /* Responsividade dos navigation dots */
        @media (max-width: 480px) {
            .nav-dots {
                right: 10px;
                gap: 10px;
            }

            .nav-dot {
                width: 8px;
                height: 8px;
                border-width: 1.5px;
            }

            .nav-dot::before {
                top: -12px;
                left: -12px;
                right: -12px;
                bottom: -12px;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .nav-dots {
                right: 15px;
                gap: 12px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-dots {
                right: 20px;
            }
        }

        /* Ocultar dots em telas muito pequenas em landscape */
        @media (max-height: 500px) and (orientation: landscape) {
            .nav-dots {
                display: none;
            }
        }

        /* ===== MEDIA QUERIES RESPONSIVAS ===== */

        /* Mobile Extra Small: até 480px */
        @media (max-width: 480px) {
            .section-content {
                padding: 0 15px;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 2.5rem);
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.25rem);
            }

            h2 {
                font-size: clamp(1.75rem, 6vw, 2.25rem);
            }

            h3 {
                font-size: clamp(1.25rem, 5vw, 1.5rem);
            }

            p {
                font-size: clamp(0.875rem, 3vw, 1rem);
            }

            .floating-btn {
                bottom: 15px;
                right: 15px;
                padding: 10px 16px;
                font-size: 13px;
                gap: 6px;
            }

            .nav-dots {
                right: 10px;
                gap: 10px;
            }

            .nav-dot {
                width: 8px;
                height: 8px;
            }

            .section {
                padding: 40px 0;
                min-height: 100vh;
            }

            /* Header móvel */
            .logo h1 {
                font-size: 1.5rem;
            }

            #mobile-menu-button {
                padding: 8px;
            }

            #mobile-menu {
                background-color: var(--color-bg);
                border-radius: 8px;
                margin-top: 8px;
                padding: 15px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            #mobile-menu ul {
                gap: 12px;
            }

            #mobile-menu .nav-link {
                padding: 8px 0;
                font-size: 16px;
            }
        }

        /* Mobile Small: 481px - 768px */
        @media (min-width: 481px) and (max-width: 768px) {
            .section-content {
                padding: 0 20px;
            }

            .floating-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }

            .nav-dots {
                right: 15px;
                gap: 12px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }

            .section {
                padding: 50px 0;
            }

            .logo h1 {
                font-size: 1.75rem;
            }

            #mobile-menu {
                background-color: var(--color-bg);
                border-radius: 8px;
                margin-top: 8px;
                padding: 20px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            /* Ajustes especiais para tablet */
            .nav-link {
                font-size: 0.9rem;
            }
        }

        /* Tablet: 769px - 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            .section-content {
                padding: 0 30px;
            }

            .floating-btn {
                bottom: 25px;
                right: 25px;
                padding: 14px 24px;
                font-size: 15px;
            }

            .nav-dots {
                right: 20px;
            }

            .nav-dot {
                width: 12px;
                height: 12px;
            }

            .section {
                padding: 70px 0;
            }

            /* Header em tablet */
            .logo h1 {
                font-size: 2rem;
            }

            .nav-link {
                font-size: 0.9rem;
            }

            /* Imagem da seção Sobre em tablet */
            .flex.flex-col.lg\:flex-row img {
                max-width: 350px;
                height: auto;
                aspect-ratio: 4/5;
            }
        }

        /* Desktop Small: 1025px - 1440px */
        @media (min-width: 1025px) and (max-width: 1440px) {
            .section-content {
                max-width: 1200px;
                padding: 0 40px;
            }

            /* Imagem da seção Sobre em desktop pequeno */
            .flex.flex-col.lg\:flex-row img {
                max-width: 450px;
                aspect-ratio: 4/5;
            }
        }

        /* Desktop Large: acima de 1440px */
        @media (min-width: 1441px) {
            .section-content {
                max-width: 1400px;
                padding: 0 60px;
            }
        }

        /* Otimizações para orientação landscape em mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .section {
                padding: 30px 0;
            }

            .hero-title {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
                margin-bottom: 0.5rem;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 3vw, 1.25rem);
                margin-bottom: 1rem;
            }

            #contato.section {
                padding-top: 40px;
                padding-bottom: 10px;
            }

            .contact-card {
                padding: 20px;
            }

            .floating-btn {
                bottom: 15px;
                right: 15px;
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        /* Ajustes para telas ultra-wide */
        @media (min-aspect-ratio: 21/9) {
            .section-content {
                max-width: 1600px;
            }

            .testimonials-carousel {
                max-width: 1200px;
            }
        }

        /* Ajustes para impressão */
        @media print {

            .nav-dots,
            .floating-btn,
            .carousel-controls {
                display: none;
            }

            .section {
                page-break-inside: avoid;
                min-height: auto;
            }
        }
