/* 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: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.4rem;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    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.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 208, 0, 0.3);
    transition: all 0.2s ease !important;
}

.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;
}
