/* Global Reset & Variables */
:root {
    --primary-color: #1A355B;
    --secondary-color: #2B6CAD;
    --accent-color: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
    --size-title: 36px;
    --size-subtitle: 18px;
    --size-text: 15px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
header {
    height: 80px;
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}
.nav-links li{
    transition: var(--transition);
}

.nav-links li:hover {
    scale: 1.03;
    color: var(--border-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
}

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

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

.btn-outline {
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp-full {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('banner.jpg') center/cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    margin-right: 8px;
    color: var(--white);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Section General */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* Cards Grid */
.grid {
    display: grid;
    gap: 30px;
}

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

.card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 30px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

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

/* Coverage Grid */
.grid-4-small {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.coverage-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.coverage-icon {
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 30px;
    width: 65px;
    height: 65px;
}


/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--white);
    font-size: var(--size-subtitle);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    display: none;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease;
    font-size: var(--size-text);
    line-height: 1.5;
    color: var(--text-light);
    padding-bottom: 20px;
}

/* Quote Section */
.quote-section {
    background: var(--primary-color);
}

.quote-grid {
    max-width: 600px;
    margin: 0 auto;
}

.quote-info h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.quote-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.contact-info {
    list-style: none;
    margin-top: 30px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-info i {
    color: var(--secondary-color);
}

.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 14px;
}

.footer-infos {
    display: flex;
    gap: 20px;
}

.footer-infos > p > a {
    color: var(--white);
    text-decoration: none;    
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    font-size: 20px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}

.whats_fixed {
    position: fixed;
    right: 2.5%;
    bottom: 3.5%;
    z-index: 9999;
}

.whats_fixed a {
    background: #0DC143;
    border-radius: 50%;
    height: 80px;
    display: flex;
    width: 80px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 25px 0px #00000096;
    color: #fff;
    text-decoration: none;
    font-size: 45px
}

/* Responsive */
@media (max-width: 992px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px 0;
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 350px) {
    .card {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}