﻿:root {
    --primary-blue: #4EBBD6;
    --dark-blue: #5AA7BF;
    --accent-red: #d90100;
    --light-gray: #FAFAFA;
    --medium-gray: #4e4e4e;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Estilos para el contenido principal */
.hero-section {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

    /* Pseudo-elemento para el fondo */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/img/privacidad.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: brightness(0.6);
        transform: scale(1);
        transition: transform 5s ease;
        z-index: -1;
    }

    .hero-section:hover::before {
        transform: scale(1.1);
    }

/* Hero titles */
.hero-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 5.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 12px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Botón */
.btn-custom {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s;
}

    .btn-custom:hover {
        background-color: var(--dark-blue);
    }

/* Divider */
.divider {
    width: 700px;
    height: 2px;
    background-color: var(--accent-red);
    margin: 0 auto 2rem;
}

.section-title {
    text-align: center;
    margin: 4rem 0 4rem;
    font-weight: 400;
    color: var(--medium-gray);
    font-size: 40px;
}

/* Estilos específicos para la política de privacidad */
.privacy-container {
    max-width: 1000px;
    margin-top: 3%;
    margin-top: 3%;
    margin-top: 3%;
    padding: 2rem 1.5rem;
}

.privacy-header {
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.privacy-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.last-updated {
    color: #D90100;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.privacy-section {
    margin-bottom: 3rem;
}

.section-heading {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 4px solid var(--accent-red);
    padding-left: 1rem;
}

.privacy-content {
    background-color: #e7e7e7;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-list {
    list-style-type: none;
    padding-left: 0;
}

    .privacy-list li {
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
        position: relative;
    }

        .privacy-list li:before {
            content: "•";
            color: var(--primary-blue);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -3px;
        }

.highlight-box {
    background-color: white;
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-right: 0.8rem;
    min-width: 30px;
}

footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Enfoque */
.focus-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.focus-text {
    font-size: 35px;
    font-family: 'Forum', display;
    font-weight: 100;
    line-height: 43px;
    letter-spacing: -2px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 80px 20px 80px;
    color: var(--medium-gray);
}

/* ---------------------------- */
/* 📱 RESPONSIVE BREAKPOINTS    */
/* ---------------------------- */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 4rem;
        letter-spacing: 6px;
    }

    .divider {
        width: 90%;
    }

    .focus-text {
        font-size: 28px;
        padding: 10px 40px;
    }

    .privacy-title {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }
}

/* Teléfonos grandes */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 32px;
    }

    .focus-text {
        font-size: 24px;
        padding: 10px 25px;
    }

    .privacy-container {
        padding: 1rem;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }
}

/* Teléfonos pequeños */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }

    .divider {
        width: 70%;
    }

    .section-title {
        font-size: 28px;
    }

    .focus-text {
        font-size: 20px;
        line-height: 32px;
        padding: 10px 20px;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .highlight-box {
        padding: 1rem;
    }
}

