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

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    position: relative;
}

/* Background Image with Depth Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mother-child-beach-bg.jpg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.12;
}

/* Gradient overlay for text blending */
body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    max-width: 1300px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-3xl); }
h2 { font-size: var(--font-2xl); }
h3 { font-size: var(--font-xl); }
h4 { font-size: var(--font-lg); }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--font-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
}

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

.btn-white {
    background: var(--bg-white);
    color: var(--primary-blue);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform var(--transition-fast);
}

.card:hover {
    transform: translateY(-5px);
}

/* Sections */
.section {
    padding: var(--spacing-4xl) 0;
}

.section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    letter-spacing: -1px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Responsive Grid */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-3xl) 0;
    }
}

/* Documentos Necessários Section */
.docs-section {
    background: var(--bg-light);
    padding: 32px 0;
}

@media (max-width: 767px) {
    .docs-section {
        padding: 20px 0;
    }
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.docs-header {
    margin-bottom: 16px;
}

.docs-title {
    /* color: #0A2240; */
    /* font-size: 32px; */
    /* line-height: 1.1; */
    /* font-weight: 800; */
    /* letter-spacing: -0.02em; */
    /* margin-bottom: 6px; */
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
    letter-spacing: -1px;
}

@media (max-width: 767px) {
    .docs-title {
        font-size: 24px;
    }
}

.docs-lead {
    /* color: rgba(31, 41, 55, 0.9); */
    /* font-size: 15px; */
    /* max-width: 56ch; */
    /* margin: 0; */
    font-size: var(--font-lg);
    /* color: var(--bg-dark); */
    line-height: 1.6;
    margin-bottom: 0px;
    opacity: 0.9;
    color: var(--text-secondary);
}

.docs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1023px) {
    .docs-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.docs-main {
    display: flex;
    flex-direction: column;
}

.docs-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.docs-item:focus-within {
    outline: 2px solid rgba(10, 34, 64, 0.35);
    outline-offset: 4px;
    background: rgba(10, 34, 64, 0.05);
}

.docs-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    font-size: 18px;
    color: #0A2240;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .docs-icon {
        flex: 0 0 16px;
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
}

.docs-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.docs-legal {
    background: transparent;
    padding: 0;
}

.docs-legal-card {
    /* background: var(--bs-gray-100); */
    padding: 16px;
    border: 1px solid rgba(10, 34, 64, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(10, 34, 64, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

@media (max-width: 1023px) {
    .docs-legal-card {
        position: static;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .docs-legal-card {
        padding: 14px;
    }
}

.docs-legal-title {
    color: #0A2240;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-legal-icon {
    color: #0A2240;
    font-size: 24px;
}

.docs-legal-text {
    color: #1F2937;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Botões Flutuantes de Contato */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado após 100px de scroll - botões aparecem deslizando da direita */
.floating-contact-buttons.scrolled {
    transform: translateY(-50%) translateX(0);
}

/* Estado hover - botões permanecem visíveis */
.floating-contact-buttons:hover {
    transform: translateY(-50%) translateX(0);
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-600);
    border: 2px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--bg-white);
    text-decoration: none;
}

.floating-btn i {
    font-size: 20px;
}

/* Cores específicas para cada botão */
.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
}

.phone-btn:hover {
    background: #4CAF50;
    border-color: #4CAF50;
}

.email-btn:hover {
    /* background: #FF5722; */
    /* border-color: #FF5722; */
}

/* Responsividade para os botões flutuantes */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 15px;
        gap: 10px;
        transform: translateY(-50%) translateX(80px);
    }
    
    .floating-contact-buttons.scrolled {
        transform: translateY(-50%) translateX(0);
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-contact-buttons {
        right: 10px;
        gap: 8px;
        transform: translateY(-50%) translateX(70px);
    }
    
    .floating-contact-buttons.scrolled {
        transform: translateY(-50%) translateX(0);
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-btn i {
        font-size: 16px;
    }
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
}
.suggestions-panel {
    padding: 16px 0;
}.close-suggestions {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
}.suggestions-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 0.9rem;
    padding: 0 15px;
}.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}
.view-all-resultados {
    padding: 5px 15px;
}
.suggestions-list li {
    padding: 5px 14px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestions-list li:hover {
    background-color: var(--primary-600);
    color: var(--bg-light);
}


.header-search-form {
    width: 100%;
    position: relative;
}.header-search-section {
    flex: 1 1 0;
    max-width: 600px;
    min-width: 400px;
}