/* CSS Reset e Variáveis de Cores inspiradas no Logo */
:root {
    --sky-blue-light: #e6f0ff;
    --sky-blue-medium: #a4c2f4;
    --sky-blue-deep: #7097d1;
    --warning-yellow: #ffd000;
    --warning-yellow-hover: #e5b800;
    --cloud-white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Nuvens flutuantes no fundo (inspiradas no logo) */
.cloud-bg {
    position: fixed;
    background: var(--cloud-white);
    border-radius: 100px;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
    filter: blur(4px);
}

.cloud-bg::before,
.cloud-bg::after {
    content: '';
    position: absolute;
    background: var(--cloud-white);
    border-radius: 50%;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 15%;
    left: -150px;
    animation: floatClouds 35s linear infinite;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-1::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 15px;
}

.cloud-2 {
    width: 200px;
    height: 60px;
    top: 45%;
    left: -250px;
    animation: floatClouds 50s linear infinite 5s;
}

.cloud-2::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 25px;
}

.cloud-2::after {
    width: 100px;
    height: 100px;
    top: -50px;
    right: 25px;
}

.cloud-3 {
    width: 150px;
    height: 45px;
    top: 75%;
    left: -200px;
    animation: floatClouds 42s linear infinite 15s;
}

.cloud-3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-3::after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
}

@keyframes floatClouds {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Header e Navegação */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(164, 194, 244, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sky-blue-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--sky-blue-deep);
}

.nav-btn {
    background-color: var(--warning-yellow);
    color: var(--text-dark) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 208, 0, 0.3);
    transition: all 0.2s ease !important;
    display: inline-block;
}

.nav-btn:hover {
    background-color: var(--warning-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 208, 0, 0.45);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 77px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: url('image/hero-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content h1 span {
    background: linear-gradient(120deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--warning-yellow);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 208, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--warning-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 208, 0, 0.55);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--sky-blue-deep);
    border: 2px solid var(--sky-blue-medium);
}

.btn-secondary:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 151, 209, 0.15);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Moldura de destaque elegante para o logotipo */
.logo-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    animation: floatLogo 6s ease-in-out infinite;
}

.logo-wrapper img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Detalhe da placa de sinalização amarela em miniatura flutuando */
.badge-sign {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--warning-yellow);
    border: 4px solid var(--cloud-white);
    color: var(--text-dark);
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Seção Sobre nós */
.about {
    padding: 7rem 2rem;
    background-color: var(--cloud-white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--warning-yellow);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--sky-blue-deep);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--sky-blue-light);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(164, 194, 244, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(112, 151, 209, 0.15);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Seção Serviços */
.services {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--cloud-white) 0%, var(--sky-blue-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--cloud-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(164, 194, 244, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(112, 151, 209, 0.25);
}

.service-body {
    padding: 2.5rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--sky-blue-light);
    padding: 1rem;
    border-radius: 20px;
    color: var(--sky-blue-deep);
    line-height: 1;
}

.service-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-footer {
    padding: 1.5rem 2.5rem;
    background-color: var(--sky-blue-light);
    border-top: 1px solid rgba(164, 194, 244, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sky-blue-deep);
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Seção Formulário e Simulador Interativo */
.booking-section {
    padding: 7rem 2rem;
    background-color: var(--cloud-white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-panel {
    background: linear-gradient(135deg, var(--sky-blue-light) 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(164, 194, 244, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.booking-panel h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Simulador de Preço Interativo */
.simulator {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(164, 194, 244, 0.3);
}

.simulator-label {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: block;
}

.range-slider {
    width: 100%;
    height: 8px;
    background: var(--sky-blue-medium);
    outline: none;
    border-radius: 5px;
    -webkit-appearance: none;
    margin-bottom: 1rem;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--warning-yellow);
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.option-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sky-blue-deep);
}

.total-box {
    background-color: var(--sky-blue-medium);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.total-box h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    color: rgba(30, 41, 59, 0.8);
}

.total-box .total-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Formulário de Contato */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--sky-blue-medium);
    background-color: #ffffff;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--sky-blue-deep);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid var(--warning-yellow);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--warning-yellow);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--warning-yellow);
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {

    .hero-container,
    .about-grid,
    .booking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .nav-links {
        display: none;
        /* Em um app real haveria menu hambúrguer, mas simplificamos mantendo focado e limpo */
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    animation: whatsappFloat 2s ease-in-out infinite;
}

@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

/* Seletor de Idiomas (Language Selector) */
.lang-selector-container {
    position: relative;
    display: inline-block;
}

.lang-select-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--sky-blue-medium);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lang-select-btn:hover {
    background: #ffffff;
    border-color: var(--sky-blue-deep);
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.2);
}

.lang-select-btn .arrow {
    font-size: 0.65rem;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 165px;
    padding: 6px 0;
    display: none;
    z-index: 10000;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    display: block;
    animation: fadeInDown 0.2s ease forwards;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
}

.lang-option:hover {
    background: var(--sky-blue-light);
    color: var(--sky-blue-deep);
}

.lang-option.active {
    font-weight: 700;
    color: var(--sky-blue-deep);
    background: rgba(0, 168, 232, 0.08);
}

/* Suporte ao Modo Escuro para o Seletor de Idiomas Dropdown */
html[data-theme="dark"] .lang-select-btn,
body.dark-mode .lang-select-btn {
    background: rgba(30, 41, 59, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .lang-dropdown-menu,
body.dark-mode .lang-dropdown-menu {
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

html[data-theme="dark"] .lang-option,
body.dark-mode .lang-option {
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .lang-option:hover,
body.dark-mode .lang-option:hover {
    background: rgba(56, 189, 248, 0.15) !important;
    color: #38bdf8 !important;
}

html[data-theme="dark"] .lang-option.active,
body.dark-mode .lang-option.active {
    background: rgba(56, 189, 248, 0.2) !important;
    color: #38bdf8 !important;
    font-weight: 700;
}

/* ==========================================================================
   SISTEMA DE MODO ESCURO (DARK MODE) DE ALTA PERFORMANCE & ESTÉTICA
   ========================================================================== */

/* Botão de Toggle de Tema (Navegação) */
.theme-toggle-btn {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

/* Tema Escuro Ativo */
html[data-theme="dark"],
body[data-theme="dark"],
.dark-mode {
    --sky-blue-light: #0b0f19 !important;
    --sky-blue-medium: #1e293b !important;
    --sky-blue-deep: #38bdf8 !important;
    --warning-yellow: #f59e0b !important;
    --warning-yellow-hover: #d97706 !important;
    --cloud-white: #111827 !important;
    --text-dark: #f8fafc !important;
    --text-light: #94a3b8 !important;
}

html[data-theme="dark"] body,
body.dark-mode {
    background-color: #0b0f19 !important;
    color: #f8fafc !important;
}

/* Header em Modo Escuro */
html[data-theme="dark"] header,
body.dark-mode header {
    background-color: rgba(11, 15, 25, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5) !important;
}

html[data-theme="dark"] .brand,
body.dark-mode .brand {
    color: #f8fafc !important;
}

html[data-theme="dark"] .nav-links a,
body.dark-mode .nav-links a {
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .nav-links a:hover,
body.dark-mode .nav-links a:hover {
    color: #38bdf8 !important;
}

/* Seções e Cards em Modo Escuro */
html[data-theme="dark"] .about,
body.dark-mode .about,
html[data-theme="dark"] .services,
body.dark-mode .services,
html[data-theme="dark"] .booking-section,
body.dark-mode .booking-section,
html[data-theme="dark"] .testimonials,
body.dark-mode .testimonials {
    background: #0b0f19 !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .feature-card,
body.dark-mode .feature-card,
html[data-theme="dark"] .service-card,
body.dark-mode .service-card,
html[data-theme="dark"] .booking-panel,
body.dark-mode .booking-panel,
html[data-theme="dark"] .testimonial-card,
body.dark-mode .testimonial-card,
html[data-theme="dark"] .about-text,
body.dark-mode .about-text {
    background: #1e293b !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #f8fafc !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

html[data-theme="dark"] .service-footer,
body.dark-mode .service-footer {
    background: #151d2a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .section-header h2,
body.dark-mode .section-header h2,
html[data-theme="dark"] .about-text h3,
body.dark-mode .about-text h3,
html[data-theme="dark"] .feature-card h4,
body.dark-mode .feature-card h4,
html[data-theme="dark"] .service-body h3,
body.dark-mode .service-body h3,
html[data-theme="dark"] .form-group label,
body.dark-mode .form-group label,
html[data-theme="dark"] .booking-panel h3,
body.dark-mode .booking-panel h3 {
    color: #f8fafc !important;
}

html[data-theme="dark"] .section-header p,
body.dark-mode .section-header p,
html[data-theme="dark"] .about-text p,
body.dark-mode .about-text p,
html[data-theme="dark"] .feature-card p,
body.dark-mode .feature-card p,
html[data-theme="dark"] .service-body p,
body.dark-mode .service-body p {
    color: #94a3b8 !important;
}

/* Campos de Formulário em Modo Escuro */
html[data-theme="dark"] .form-control,
body.dark-mode .form-control,
html[data-theme="dark"] select.form-control,
body.dark-mode select.form-control,
html[data-theme="dark"] textarea.form-control,
body.dark-mode textarea.form-control {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .form-control:focus,
body.dark-mode .form-control:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25) !important;
}

html[data-theme="dark"] .form-group div[style*="background"],
body.dark-mode .form-group div[style*="background"] {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
}

/* Nuvens Flutuantes Noturnas */
html[data-theme="dark"] .cloud-bg,
body.dark-mode .cloud-bg,
html[data-theme="dark"] .cloud-bg::before,
body.dark-mode .cloud-bg::before,
html[data-theme="dark"] .cloud-bg::after,
body.dark-mode .cloud-bg::after {
    background: rgba(56, 189, 248, 0.05) !important;
}

/* Botão de Toggle em Modo Escuro */
html[data-theme="dark"] .theme-toggle-btn,
body.dark-mode .theme-toggle-btn {
    background: rgba(30, 41, 59, 0.9) !important;
    border-color: rgba(56, 189, 248, 0.4) !important;
    color: #ffd000 !important;
}

html[data-theme="dark"] .theme-toggle-btn:hover,
body.dark-mode .theme-toggle-btn:hover {
    background: rgba(56, 189, 248, 0.2) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.4) !important;
}

/* ==========================================================================
   ESTILOS DO WRAPPER E BOTÃO DE OLHO DA SENHA (DENTRO DO CAMPO À DIREITA)
   ========================================================================== */
.password-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.password-wrapper .form-control {
    width: 100% !important;
    padding-right: 45px !important;
    box-sizing: border-box !important;
}

.password-toggle-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    font-size: 1.15rem !important;
    color: #94a3b8 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
    user-select: none !important;
    z-index: 10 !important;
    line-height: 1 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.password-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* ==========================================================================
   RESPONSIVIDADE PREMIUM PARA DISPOSITIVOS MÓVEIS (SMARTPHONES E TABLETS)
   ========================================================================== */

@media (max-width: 768px) {
    /* Header e Navegação */
    header {
        padding: 0.8rem 1rem !important;
    }

    .brand img {
        height: 38px !important;
    }

    .brand span {
        font-size: 1.1rem !important;
    }

    /* Oculta links extensos de texto e exibe botões compactos de ação no header */
    .nav-links {
        gap: 0.5rem !important;
    }

    .nav-links a {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 1rem 3rem 1rem !important;
        min-height: auto !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }

    /* Grid do Formulário e Simulador */
    .booking-section {
        padding: 3rem 1rem !important;
    }

    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .booking-panel {
        padding: 1.5rem 1rem !important;
        border-radius: 20px !important;
    }

    /* Converte todas as linhas de formulário com grid (2 colunas ou 3 colunas) em colunas únicas no celular */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Ajuste dos Cards de Serviços / Experiências */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-footer {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    .service-footer .btn {
        width: 100% !important;
    }

    /* Ajuste de Botões Flutuantes e Login */
    .whatsapp-float {
        bottom: 16px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
    }

    .whatsapp-float svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Ajustes dos Modais */
    .modal-card {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .brand span {
        display: none !important; /* Em telas muito pequenas mantém apenas a logo para dar espaço ao modo escuro e idioma */
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
    }

    .form-control, select.form-control, textarea.form-control {
        font-size: 0.9rem !important;
        padding: 10px 12px !important;
    }
}




