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

:root {
    --primary-color: #1a9b7a;
    --dark-bg: #0d1b15;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    flex: 1;
    min-width: 250px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--primary-color);
}

.logo .tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section.quienes-somos {
    background: white;
}

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

.section.proteccion {
    background: white;
}

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

/* Quiénes Somos */
.quienes-somos .content {
    max-width: 900px;
    margin: 0 auto;
}

.quienes-somos p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.quienes-somos p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services */
.service-intro {
    background: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

.service-situations {
    background: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-situations h3 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.situation {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.situation:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.situation strong {
    color: var(--text-dark);
    font-weight: 600;
}

.service-faq {
    background: white;
    padding: 40px;
    border-radius: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-faq h3 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 20px;
}

.service-faq h3:first-child {
    margin-top: 0;
}

.service-faq p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-faq ul {
    list-style: none;
    margin-bottom: 25px;
    margin-left: 20px;
}

.service-faq ul li {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    margin-bottom: 8px;
}

.service-faq ul li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--text-dark);
}

/* Protección */
.protection-intro {
    background: white;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.protection-intro h3 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.protection-intro p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.protection-card {
    background: white;
    padding: 40px;
    border-radius: 4px;
    border-top: 3px solid var(--primary-color);
}

.protection-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.protection-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
}

/* Contacto */
.contact-content {
    background: white;
    padding: 50px;
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-content p:last-child {
    margin-bottom: 0;
}

.contact-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-content a:hover {
    color: #147d63;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section {
        padding: 50px 15px;
    }

    .service-intro,
    .service-situations,
    .service-faq,
    .protection-intro,
    .contact-content {
        padding: 30px;
    }

    .footer-nav {
        gap: 15px;
    }
}

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

    .section h2 {
        font-size: 22px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo .tagline {
        font-size: 10px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-link {
        font-size: 11px;
    }

    .service-intro,
    .service-situations,
    .service-faq,
    .protection-intro,
    .contact-content {
        padding: 20px;
    }

    .protection-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: left;
    }
}