/* --- RESET & VARIABLES --- */
:root {
    /* MUDANÇA: Tons de Azul baseados em #1368aa */
    --primary-blue: #1368aa; 
    --blue-hover: #0e5082; /* Tom mais escuro para hover */
    
    --dark-bg: #141414;
    --section-dark: #1a1a1a;
    --section-grey: #202020;
    --card-bg: #272727;
    --text-white: #FFFFFF;
    --text-grey: #D1D1D1;
    --font-main: 'Raleway', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-blue);
}

.dot {
    color: var(--primary-blue);
}

.center {
    text-align: center;
}

/* --- TYPOGRAPHY UTILS --- */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

p {
    color: var(--text-grey);
}

.section-tag {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--primary-blue);
    padding-bottom: 2px;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: 20px auto;
}

/* --- NAVBAR --- */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(20,20,20,0.9), transparent);
}

#navbar {
    position: fixed; /* Fixa o elemento na tela */
    top: 0;          /* Cola no topo */
    left: 0;         /* Cola na esquerda */
    width: 100%;     /* Ocupa toda a largura */
    z-index: 1000;   /* Garante que fique acima de tudo (slider, textos, etc) */
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    display: Center;
}

.logo.small img {
    height: 35px;
}



.nav-cta {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.35;
    filter: grayscale(100%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, #141414 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Convertido para RGB do azul (19, 104, 170) */
    background: rgba(19, 104, 170, 0.15);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(19, 104, 170, 0.3);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text .subheadline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 100%;
}

.countdown-box {
    margin-top: 30px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-blue);
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
    color: #fff;
}


/* Estilos da Galeria */
.gallery-section {
    padding: 30px 0;
    background-color: #0b0b0b; /* Fundo escuro para destacar as fotos */
}

.section-description {
    color: #a0a0a0;
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Wrapper Principal */
.gallery-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 500px; /* Altura fixa para padrão */
}

.gallery-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.gallery-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto preencha sem distorcer */
}

/* Legenda da Foto (Opcional) */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

/* Botões de Navegação */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-btn:hover {
    background: #0056b3; /* Azul da marca */
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -70px; }
.next-btn { right: -70px; }

/* Bolinhas de Navegação */
.gallery-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.gallery-dot {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.current-dot {
    background: #0056b3; /* Azul ativo */
    transform: scale(1.2);
}

/* Responsivo para Celular */
@media (max-width: 768px) {
    .gallery-wrapper { height: 300px; }
    .prev-btn { left: 10px; background: rgba(0,0,0,0.5); }
    .next-btn { right: 10px; background: rgba(0,0,0,0.5); }
}


/* --- CAPTURE CARD --- */
.capture-card {
    background: #1e1e1e;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.card-header p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    width: 18px;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: white;
    font-family: var(--font-main);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #333;
}

.cta-button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--blue-hover);
    transform: translateY(-2px);
}

.privacy-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- SECTIONS COMMON --- */
section {
    padding: 50px 0;
}

.section-dark {
    background-color: var(--section-dark);
}

.section-grey {
    background-color: var(--section-grey);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-featured {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-grey);
}

/* --- REVELATION SECTION --- */
.revelation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 4px;
}

.feature-item i {
    color: var(--primary-blue);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
}

.reveal-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: var(--transition);
}

.reveal-img:hover {
    transform: scale(1.02);
}

/* --- SLIDER DA REVELAÇÃO --- */
.revelation-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container .reveal-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-container .reveal-img.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}

/* --- INFO CARDS WORKSHOP --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .info-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-card-image {
        flex: 0 0 85vw;
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

.info-grid-horizontal {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.info-card-image {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card-image:hover {
    transform: translateY(-5px);
    /* Sombra com tom azulado */
    box-shadow: 0 15px 50px rgba(19, 104, 170, 0.4);
}

.info-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-section .price-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-grey);
}

/* --- TARGET AUDIENCE SECTION --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card-box {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.card-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: var(--primary-blue);
    width: 30px;
    height: 30px;
}

.card-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- DOCTORS SECTION --- */
.doctors-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 50px;
    align-items: center;
}

.doctor-profile.reverse {
    grid-template-columns: 0.6fr 0.4fr;
}

.doctor-profile.reverse .doc-img-wrapper {
    order: 2;
}

.doctor-profile.reverse .doc-info {
    order: 1;
    text-align: right;
}

.doc-img-wrapper img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: var(--transition);
    box-shadow: 10px 10px 0 var(--primary-blue);
}

.doc-img-wrapper img:hover {
    filter: grayscale(0%);
    box-shadow: 0 0 0 transparent;
    transform: translate(5px, 5px);
}

.doc-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.doc-info .role {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.doc-info .bio {
    font-size: 1.1rem;
}

/* --- DELIVERABLES --- */
/* Renomeado para .section-blue para consistência, mas o HTML deve manter a classe se não for alterado, 
   porém recomendo alterar no HTML para 'section-blue' ou manter o nome 'section-red' com a cor azul.
   Abaixo mantive o seletor 'section-red' mas com a cor azul, caso não queiras mexer no HTML. */
.section-red {
    background: var(--primary-blue);
    color: #fff;
}

.deliverables {
    padding: 80px 20px;
}

.deliverables-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.deliverable-item:hover {
    transform: translateY(-10px);
}

.deliverable-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- FAQ SECTION --- */
.accordion {
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-body p {
    padding-bottom: 20px;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 120px 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), #111;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px;
}

.big-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(19, 104, 170, 0.3);
}

.big-cta-button:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--primary-blue);
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col p {
    font-size: 0.9rem;
    color: #555;
}

.socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-blue);
}

.social-link i {
    width: 20px;
    height: 20px;
}
/* --- POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid #444;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-header {
    margin-bottom: 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
}

/* --- ANIMATIONS --- */
@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(19, 104, 170, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(19, 104, 170, 0); }
    100% { box-shadow: 0 0 0 0 rgba(19, 104, 170, 0); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 11px;
    }
    
    .hero-text h1 {
        font-size: 2.1rem;
    }
    
    .revelation-grid {
        grid-template-columns: 1fr;
    }
    
    .revelation-visual {
        order: -1;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-wrapper {
        gap: 40px;
    }
    
    .doctor-profile,
    .doctor-profile.reverse {
        grid-template-columns: 1fr;
        text-align: center !important;
    }
    
    .doctor-profile.reverse .doc-img-wrapper {
        order: -1;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .socials a {
        margin: 0 10px;
    }
}

/* --- PARTÍCULAS FLUTUANTES (AGORA AZUIS) --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: #1368aa; /* Cor corrigida para azul */
    border-radius: 50%;
    animation: float-up-ember linear forwards;
    box-shadow: 0 0 5px #1368aa; /* Sintaxe corrigida e cor alterada */
    filter: blur(0.5px);
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #1368aa; /* Cor corrigida para azul */
    border-radius: 50%;
    box-shadow: 0 0 6px #1368aa; /* Cor corrigida para azul */
}

@keyframes float-up-ember {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        filter: blur(0.5px) brightness(1.5);
    }
    5% {
        opacity: 0.9;
    }
    15% {
        opacity: 1;
        filter: blur(0.5px) brightness(1.8);
    }
    50% {
        opacity: 0.8;
        filter: blur(1px) brightness(1.2);
    }
    80% {
        opacity: 0.4;
        filter: blur(1.5px) brightness(0.8);
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(var(--drift)) translateY(calc(var(--drift) * -0.3)) rotate(720deg) scale(0.3);
        filter: blur(2px) brightness(0.3);
    }
}

@media (max-width: 768px) {
    .deliverables-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    
    .deliverable-item {
        flex: 0 0 85vw;
        min-width: 85vw;
        scroll-snap-align: center;
    }
}


/* Container fixo no canto inferior direito */
.floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* O Botão Azul */
.floating-btn {
    /* COR DO BOTÃO: Mude este código Hex para o Azul exato da sua página */
    background-color: #0056b3; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Efeito Hover (Ao passar o mouse) */
.floating-btn:hover {
    transform: scale(1.1);
    background-color: #004494; /* Um tom um pouco mais escuro para contraste */
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.6);
}

/* O Balão de Mensagem (Tooltip) */
.floating-tooltip {
    background-color: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px; /* Espaço entre o texto e o botão */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    white-space: nowrap;
    opacity: 0; /* Começa invisível */
    transform: translateX(20px); /* Começa um pouco deslocado */
    transform-origin: right center;
    pointer-events: none; /* O clique passa direto por ele */
    
    /* Animação do Loop: Duração de 15 segundos total */
    animation: tooltipLoop 15s infinite ease-in-out;
}

/* Triângulo do Balão (Seta apontando para o botão) */
.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
}

/* A Mágica da Animação (Aparece e Some) */
@keyframes tooltipLoop {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    5% { /* Aparece rápido */
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    35% { /* Fica visível por um tempo */
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    40% { /* Desaparece */
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }
    100% { /* Fica invisível o resto do tempo até reiniciar */
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }
}

/* Responsivo para celular (ajusta tamanho) */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-tooltip {
        font-size: 12px;
        padding: 8px 12px;
    }
}