:root {
    --primary-color: #FF5000;
    --primary-hover: #cc4100;
    --secondary-color: #001E64;
    --secondary-hover: #1B365D;
    --bg-color: #F4F8FF;
    --text-color: #323232;
    --white: #FFFFFF;
    --purple-accent: #9632FA;
    --blue-accent: #146CFA;
    --font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo h2 {
    color: var(--secondary-color);
}

.nav-desktop {
    display: none;
}

@media (min-width: 960px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.nav-desktop a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.separator {
    color: #ccc;
}

.btn-outlined {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outlined:hover {
    background-color: rgba(255, 80, 0, 0.04);
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: var(--bg-color);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    /* Negrito elegante */
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    /* Elegância moderna */
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        /* Destaque premium em telas maiores */
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.broker-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.broker-card p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Global Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.section-title.white {
    color: var(--white);
}

/* Partners Section */
.partners {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    /* Fixed height for consistency */
    transition: transform 0.3s ease;
    padding: 10px;
}

.partner-item:hover {
    transform: scale(1.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    /* Limit height to keep sizes consistent */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    /* Make logos monochrome */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(100%);
    /* Full color on hover */
    opacity: 1;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 0;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.center-btn {
    text-align: center;
    margin-top: 60px;
}

/* Coverages & Benefits Section */
.coverages,
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits {
    background-color: var(--bg-color);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
}

.section-description {
    text-align: center;
    margin-bottom: 48px;
    color: #666;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center;
}

.card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.card img {
    width: 48px;
    height: 48px;
}

.card h3 {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

/* Hover Overlay Effect */
.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 100, 0.95);
    /* Elegant dark blue with slight transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 3;
}

.card-hover p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.card:hover .card-hover {
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.faq-question {
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-bottom: 16px;
    color: #555;
    font-size: 0.95rem;
}

/* Contact Form Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.footer-logo {
    max-width: 140px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-block span {
    font-size: 0.875rem;
    color: #666;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

/* Helper to trigger animations on scroll (JS will add class) */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.is-visible {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Mobile optimizations for Coverage Cards */
@media (max-width: 900px) {
    .card {
        height: auto;
        /* Allow card to grow with content */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
    }

    .card-hover {
        position: static;
        /* Remove absolute positioning */
        height: auto;
        width: 100%;
        opacity: 1;
        /* Always visible */
        background-color: transparent;
        /* Remove overlay background */
        padding: 15px 0 0 0;
        transform: none;
    }

    .card-hover p {
        color: #555;
        /* Dark text for readability on white bg */
        font-size: 0.95rem;
        margin: 0;
    }

    /* Ensure specific spacing on mobile */
    .card h3 {
        margin-bottom: 5px;
    }

    .card-icon {
        margin-bottom: 15px;
        transform: scale(0.9);
        /* Slightly smaller icon on mobile */
    }

    /* Disable the hover lift effect slightly or keep it subtle */
    .card:hover {
        transform: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
}

/* === New Styles === */

/* Other Services Section */
.other-services {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.other-services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.other-services p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.btn-shiny {
    background: var(--white);
    color: var(--secondary-color);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-shiny:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-shiny::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-shiny:hover::after {
    left: 100%;
}

/* Footer Additions */
.footer-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-left-column {
        align-items: flex-start;
    }
}

.cnpj-text {
    font-size: 0.8rem;
    margin-top: 8px;
    color: #666;
    display: block;
}


/* Senra Showcase Section */
.senra-showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fbff, #ffffff);
    /* Subtle premium gradient */
    position: relative;
    overflow: hidden;
}

.senra-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

@media (min-width: 960px) {
    .senra-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
    }
}

.senra-intro {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

@media (min-width: 960px) {
    .senra-intro {
        text-align: left;
    }
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.1);
    color: #d4a000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-trust i {
    font-size: 1.1rem;
}

.senra-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
    border-radius: 2px;
    margin: 0 auto 30px;
}

@media (min-width: 960px) {
    .divider-gold {
        margin: 0 0 30px 0;
    }
}

.senra-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.senra-intro p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.highlight-text {
    font-style: italic;
    color: #444;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.02);
    padding: 16px;
    border-radius: 0 8px 8px 0;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 48px;
}

@media (min-width: 960px) {
    .trust-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 960px) {
    .stat-item {
        align-items: flex-start;
    }
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

@media (min-width: 960px) {
    .stat-label {
        text-align: left;
    }
}

/* Visual Card - Logo Area */
.senra-visual-card {
    position: relative;
    background: var(--white);
    /* Explicitly White */
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.senra-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(20, 108, 250, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.senra-logo-main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.card-footer-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #eee;
    padding-top: 24px;
    width: 100%;
}

.card-footer-text span {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stars {
    color: #FFC107;
    font-size: 1.25rem;
    letter-spacing: 4px;
}