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

:root {
    --primary: #ff6600;
    --primary-dark: #e55a00;
    --secondary: #0d47a1;
    --accent: #1976d2;
    --success: #27ae60;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1a237e;
    --text-light: #555555;
    --border: #bbdefb;
    --gold: #d4af37;
    --sky-blue: #e3f2fd;
    --light-blue: #f0f8ff;
    --celestial-blue: #87ceeb;
    --deep-blue: #1565c0;
    --camurc: #c5ab8b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: var(--black);
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--primary);
}

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

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.nav a:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.nav a:hover::before {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .nav {
        gap: 8px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
        order: 3;
    }
    
    .logo-container {
        order: 1;
    }
    
    .logo {
        height: 50px;
    }

    .nav a {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Quick Call Section */
.quick-call-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--sky-blue) 100%);
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.call-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.call-label {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white);
    color: var(--primary);
    padding: 24px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 42px;
    transition: all 0.3s ease;
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.phone-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.phone-icon {
    font-size: 44px;
}

.phone-number {
    display: inline-block;
}

.call-subtitle {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
}

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

    .phone-link {
        font-size: 32px;
        padding: 20px 30px;
        gap: 12px;
    }

    .phone-icon {
        font-size: 36px;
    }

    .call-label {
        font-size: 14px;
    }

    .call-subtitle {
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('basilica-legivel.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    display: none; /* Removido para usar o gradiente direto no background para melhor contraste */
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    max-width: 850px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.badge-icon {
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 40px 15px;
    }

    .hero-card {
        padding: 35px 20px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

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

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

.section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    color: var(--white);
    text-align: center;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary);
    font-weight: bold;
}

.section-cta h2,
.section-cta p {
    color: var(--white);
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Box */
.content-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-box p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.highlight-box {
    background: linear-gradient(135deg, #fef9f3 0%, #fef5e7 100%);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 5px solid var(--gold);
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.stats-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--sky-blue) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--accent);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.2);
}

.benefit-icon {
    margin-bottom: 15px;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--sky-blue) 100%);
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--accent);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

.location-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Groups Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.group-card {
    background: linear-gradient(135deg, #f0f9f7 0%, #e8f5f3 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--success);
    transition: all 0.3s;
}

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

.group-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.group-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Two Column */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.column h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* Journey Timeline */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.journey-step {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--sky-blue) 100%);
    padding: 25px;
    border-radius: 12px;
    border-top: 5px solid var(--accent);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

.journey-step h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 18px;
}

.journey-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Item Styles */
.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

.faq-item h3 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 12px;
    cursor: pointer;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Contact Box */
.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contact-info,
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--gold);
}

.contact-info h3,
.contact-form h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--text-dark);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form button {
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
    font-size: 14px;
    border-top: 2px solid var(--primary);
}

.footer p {
    margin: 10px 0;
    color: #ccc;
}

.footer strong {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}
