/* ==========================================
   AGUAZUL IGARAPÉ - LANDING PAGE STYLESHEET
   ========================================== */

/* Variables & Color Palette (Premium Blue & Aqua) */
:root {
    --primary: #0b2238; /* Navy mais escuro e imponente */
    --primary-light: #153856;
    --secondary: #0096c7; /* Azul piscina/céu vibrante */
    --secondary-hover: #0077b6;
    --accent: #f26419; /* Laranja vibrante do Instagram da Aguazul */
    --accent-hover: #d45d12;
    --text-dark: #1d2d44;
    --text-light: #4f5d75;
    --bg-light: #f0f5fa; /* Fundo azulado gelo suave */
    --white: #ffffff;
    --ice: #e2eafc;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 20px -3px rgba(11, 34, 56, 0.1), 0 6px 8px -2px rgba(11, 34, 56, 0.05);
    --shadow-lg: 0 20px 35px -5px rgba(11, 34, 56, 0.18), 0 12px 15px -5px rgba(11, 34, 56, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-lg: 24px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800;
    line-height: 1.25;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: inherit;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(242, 100, 25, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(242, 100, 25, 0.5);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(0, 150, 199, 0.25);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 150, 199, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Pulse Animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(242, 100, 25, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
.header {
    background-color: #ffffff; /* Fundo sólido branco para mesclar perfeitamente com o fundo das logos */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
}

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

/* Double Logo Alignment */
.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 68px; /* Aumentado para melhor visibilidade e impacto das marcas */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 35px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    border-bottom: 4px solid var(--secondary);
}

.mobile-nav.active {
    display: flex;
}

.mobile-link {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 190px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 30%, rgba(0, 180, 216, 0.22) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-title {
    font-size: 3.6rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    max-width: 600px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Slideshow / Carousel Layout */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 440px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, 0.08);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease-in-out, z-index 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slide-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Backgrounds with real high-resolution project images */
.pool-visual {
    background-image: linear-gradient(rgba(11, 34, 56, 0.25), rgba(11, 34, 56, 0.7)), 
                      url('img/piscina-casa.png');
    background-position: center 80%; /* Foca na piscina que está na parte inferior da imagem */
}

.spa-visual {
    background-image: linear-gradient(rgba(11, 34, 56, 0.25), rgba(11, 34, 56, 0.7)), 
                      url('img/spa-sunset.png');
}

.family-visual {
    background-image: linear-gradient(rgba(11, 34, 56, 0.25), rgba(11, 34, 56, 0.7)), 
                      url('img/caminhao.png');
}

.slide-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.hero-slide .pool-visual-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%; /* Ocupa toda a largura inferior horizontalmente */
    z-index: 3;
    background-color: rgba(11, 34, 56, 0.65); /* Fundo de vidro semi-transparente escuro */
    backdrop-filter: blur(16px) saturate(120%);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Linha fina de vidro */
    padding: 8px 24px; /* Extremamente fino verticalmente e com respiro lateral */
    border-radius: 0 0 var(--radius-lg) var(--radius-lg); /* Encaixa no arredondamento inferior do slide */
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alinha o texto na esquerda e especificações na direita */
    gap: 20px;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card-text-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0; /* Permite encolhimento para que o texto longo abrevie se necessário */
}

.hero-slide .pool-visual-card h3 {
    color: var(--white);
    font-size: 0.92rem;
    margin: 0;
    font-weight: 800;
    white-space: nowrap;
}

.hero-slide .pool-visual-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Abrevia o texto com reticências (...) caso falte espaço lateral */
}

.hero-slide .pool-specs {
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.hero-slide .pool-specs span i {
    color: var(--accent);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

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

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary);
    width: 24px;
    border-radius: 10px;
}

/* Sections Global */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.sub-title {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Highlight Cards (Fibra / Spa 2-column) */
.card-modelo {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--ice);
    display: flex;
    flex-direction: column;
}

.card-modelo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 216, 0.2);
}

.card-img-placeholder {
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling with real project background images */
.fiber-bg {
    background-image: linear-gradient(rgba(11, 34, 56, 0.1), rgba(11, 34, 56, 0.5)), 
                      url('img/piscina-casa.png');
    background-size: cover;
    background-position: center 80%; /* Foca na piscina que está na parte inferior da imagem */
}

.spa-card-bg {
    background-image: linear-gradient(rgba(11, 34, 56, 0.1), rgba(11, 34, 56, 0.5)), 
                      url('img/spa-redondo.png');
    background-size: cover;
    background-position: center;
}

.fiber-bg::before, .spa-card-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge-primary, .badge-accent {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.badge-primary {
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--secondary);
}

.badge-accent {
    background-color: rgba(255, 183, 3, 0.15);
    color: var(--primary-light);
}

.card-body h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.card-features li i {
    color: var(--secondary);
    margin-top: 3px;
}

/* Diferenciais Section */
.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 5px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Timeline (Processo) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--ice);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
    z-index: 2;
}

@keyframes ripple {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.timeline-item.reveal-active .timeline-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    animation: ripple 2s infinite ease-out;
    pointer-events: none;
    z-index: -1;
}

.timeline-content {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
}

/* Depoimentos */
.card-depoimento {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--ice);
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.depoimento-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.depoimento-author strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.depoimento-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item.active {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--ice);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.footer-logo-img {
    height: 60px; /* Altura otimizada para a logo unificada */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 180, 216, 0.3);
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact p i {
    color: var(--secondary);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
/* Floating Blobs */
.bg-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 15s infinite alternate ease-in-out;
}
.blob-1 { top: 20%; left: -10%; background: radial-gradient(circle, rgba(242, 100, 25, 0.08) 0%, transparent 70%); }
.blob-2 { top: 60%; right: -10%; }
@keyframes floatOrb {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(-50px) scale(1.15) rotate(180deg); }
}

/* Shimmer effect for primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    z-index: 2;
    animation: buttonShine 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes buttonShine {
    0% { left: -150%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

/* Scroll Reveal for Product Cards */
.reveal-item {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Glassmorphism Accents */
.card-modelo, .timeline-content, .card-depoimento, .pool-visual-card {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 234, 252, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-slider-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header {
        padding: 8px 0;
    }

    .header-container {
        display: flex;
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 0 15px;
    }

    .logo-group {
        justify-content: center;
        margin: 0 auto;
    }

    .logo-img {
        height: 44px; /* Logos ligeiramente mais compactas no mobile */
    }

    .nav {
        display: none;
    }
    
    .btn-header {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px; /* Afasta ligeiramente da borda para não ficar colado */
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding-top: 100px; /* Reduz o padding gigante do topo no mobile */
        padding-bottom: 50px;
    }
    
    .hero-badge {
        margin-bottom: 12px;
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .hero-title {
        font-size: 1.8rem; /* Título mais sutil e menos agressivo na tela */
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem; /* Texto de descrição mais legível */
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-cta-group {
        gap: 12px;
        flex-direction: column; /* Empilha os botões para melhor ergonomia de clique */
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-slider-container {
        height: 310px;
        margin-top: 10px; /* Reduz o espaço vazio até o slide */
    }

    .hero-slides {
        height: 260px;
        border-radius: var(--radius);
        border-width: 4px;
    }

    .hero-slide {
        padding: 15px;
    }

    .slide-tag {
        font-size: 0.62rem !important; /* Muito mais sutil no mobile */
        padding: 4px 10px !important;
        top: 10px !important;
        right: 10px !important;
        letter-spacing: 0.5px;
    }

    .hero-slide .pool-visual-card {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 6px 12px;
        border-radius: 0 0 var(--radius) var(--radius);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .card-text-inline {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hero-slide .pool-visual-card h3 {
        font-size: 0.78rem; /* Super discreto no mobile */
        margin: 0;
    }

    .hero-slide .pool-visual-card p {
        display: none; /* Esconde totalmente a descrição longa no mobile para focar na foto */
    }

    .hero-slide .pool-specs {
        font-size: 0.65rem; /* Ajustado para caber perfeitamente sem quebras no mobile */
        gap: 6px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
        margin-bottom: 35px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .card-body {
        padding: 22px;
    }

    .card-body h3 {
        font-size: 1.3rem;
    }
}

/* Location (Map) Section */
.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}

.map-iframe-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-iframe-container iframe {
    display: block;
}

.map-info-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.map-desc {
    color: var(--text-light);
    margin-bottom: 25px;
}

.map-details {
    margin-bottom: 35px;
}

.map-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-details p i {
    color: var(--secondary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    
    .map-iframe-container {
        height: 350px;
        min-height: 300px;
    }
}

.map-store-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* Modal de Leads */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 34, 56, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 234, 252, 0.8);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px 12px 25px;
    border-bottom: 1px solid var(--ice);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 800;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.modal-body {
    padding: 25px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2eae8;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input-wrapper .form-control {
    padding-left: 14px; /* Removido prefixo visual */
}

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .modal-body {
        padding: 20px;
    }
    .modal-header {
        padding: 15px 20px 10px 20px;
    }
}

/* Seção de Orçamento Rápido (Inline Form) */
.orcamento-rapido {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.orcamento-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ice);
    max-width: 850px;
    margin: 0 auto;
}

.orcamento-header {
    text-align: center;
    margin-bottom: 35px;
}

.orcamento-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.orcamento-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .orcamento-rapido {
        padding: 60px 0;
    }
    
    .orcamento-box {
        padding: 30px 20px;
    }
    
    .orcamento-header h2 {
        font-size: 1.6rem;
    }
    
    .orcamento-header p {
        font-size: 0.95rem;
    }
}

/* Success Modal & Water Loader Animation */
.success-container {
    max-width: 480px !important;
    padding: 50px 30px !important;
    text-align: center;
}

.water-loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
}

.water-loader {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--ice);
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: border-color 0.4s ease;
}

.water-wave {
    position: absolute;
    width: 220%;
    height: 220%;
    background-color: var(--secondary);
    border-radius: 38%;
    left: -60%;
    bottom: -160%;
    animation: fillWater 2.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards, rotateWave 5s linear infinite;
    z-index: 1;
    transition: background-color 0.4s ease;
}

.success-check-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3.5rem;
    color: var(--white);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@keyframes fillWater {
    0% { bottom: -160%; }
    100% { bottom: -12%; }
}

@keyframes rotateWave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success State Styles */
.water-loader.loaded {
    border-color: rgba(46, 196, 182, 0.2);
}

.water-loader.loaded .water-wave {
    background-color: #2ec4b6; /* Verde de sucesso premium */
}

.water-loader.loaded .success-check-icon {
    transform: translate(-50%, -50%) scale(1);
}

.success-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.success-message {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.5s ease forwards;
}

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

