/* -------------------------
   VARIABLES Y RESETEO GENERAL
   ------------------------- */

/* :root {
    /* Aquí pondríamos tus colores, ej: 
    --color-azul-principal: #0d6efd; 
    --color-verde-filtro: #198754; 
    */
/* } */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    /* Un fondo gris claro para el body, como en tus diseños */
    background-color: #f4f4f4;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit; /* Hereda el color del padre */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* -------------------------
   HEADER FIJO
   ------------------------- */
.header-fijo {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1074CB;
    color: white;
    padding: 10px 0;
    z-index: 1000;
    box-sizing: border-box;
    max-width: none;
    margin: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.2s ease;
}

.header-socials a:hover {
    transform: scale(1.1);
}

.header-nav ul {
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: white;
    font-weight: 500;
    padding-bottom: 5px;
}

.header-nav a.active {
    border-bottom: 2px solid white;
}

/* -------------------------
   FOOTER
   ------------------------- */
.footer {
    background-color: #1074CB;
    color: #f4f4f4;
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
    max-width: none;
    margin: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 5%;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.footer-logo {
    flex: 1 1 30%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contacto {
    flex: 1 1 30%;
    text-align: center;
}

.footer-copy {
    flex: 1 1 30%;
    text-align: right;
}

.footer-logo img {
    height: 80px;
    width: 80px;
    margin: 0;
}

.footer-logo a {
    font-size: 0.8rem;
    color: #ddd;
}

.footer-contacto a {
    font-weight: 600;
}

.footer-copy p {
    font-size: 0.8rem;
    color: #ddd;
    margin: 0;
}

/* -------------------------
   HERO SECTION
   ------------------------- */
.hero-section {
    position: relative;
    height: 70vh;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url('../images/fotolanding.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Formulario del buscador */
.hero-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    align-items: center;
}

.search-dropdown-container {
    position: relative;
    flex: 1;
    min-width: 150px;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle:hover {
    background-color: #e9e9e9;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
    overflow: hidden;
    display: none;
}

.search-dropdown-container.open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background-color: #e0f7ff;
}

.slider-dropdown {
    padding: 20px;
    text-align: left;
    color: #333;
}

.slider-dropdown label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

#price-slider {
    width: 100%;
}

#price-value {
    font-weight: 700;
    color: #004a98;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-buscar {
    background-color: #28a745;
}

.btn-buscar:hover {
    background-color: #218838;
}

.btn-buscar:active {
    background-color: #1e7e34;
    transform: scale(0.98);
}

/* -------------------------
   CONTENEDOR GENERAL
   ------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------
   SECCIÓN PROPIEDADES DESTACADAS
   ------------------------- */
.featured-properties {
    padding: 60px 5%;
    background-color: white;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #6c757d;
}

.filter-btn:hover {
    background-color: #198754;
}

.filter-btn.active {
    background-color: #20c997;
    font-weight: 700;
}

.filter-group-location {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.filter-location-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    padding-bottom: 5px;
    position: relative;
}

.filter-location-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #198754;
    border-radius: 2px;
}

/* -------------------------
   CUADRÍCULA Y TARJETAS
   ------------------------- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

a.property-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    display: block;
    text-decoration: none;
    color: inherit;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.property-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card-nav-arrow.left { left: 10px; }
.card-nav-arrow.right { right: 10px; }

.property-card:hover .card-nav-arrow {
    opacity: 1;
}

.card-nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.property-content {
    padding: 20px;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #004a98;
    margin-bottom: 5px;
}

.property-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #333;
}

.feature i {
    color: #004a98;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    padding: 50px 0;
}

/* -------------------------
   SECCIÓN CONTACTO
   ------------------------- */
.contact-section {
    padding: 60px 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contact-icon-item:hover {
    transform: scale(1.05);
}

.contact-icon-item img {
    width: 70px;
    height: 70px;
}

.contact-icon-item strong {
    font-size: 1.1rem;
    color: #000;
}

.contact-icon-item span {
    font-size: 0.9rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-bottom: 2px solid #aaa;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    background-color: #ffffff;
    outline: none;
    border: 1px solid #34ace0;
    border-bottom: 3px solid #1a8de8;
    box-shadow: 0 0 8px rgba(52, 172, 224, 0.3);
}

.btn-enviar {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    background-color: #34ace0;
}

.btn-enviar:hover {
    background-color: #229fd9;
}

.btn-enviar:active {
    background-color: #1a8de8;
    transform: scale(0.99);
}

/* -------------------------
   FASE 3.5 - SECCIÓN "POR QUÉ ELEGIRNOS"
   ------------------------- */
.why-choose-us {
    padding: 60px 5%;
    background-color: white;
    text-align: center;
}

.why-choose-us .section-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    height: 120px;
    margin: 0 auto 20px auto;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* -------------------------
   FASE 3.5 - SECCIÓN "CTA"
   ------------------------- */
.cta-section {
    padding: 60px 5%;
    background-color: #f4f4f4;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.cta-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
}

.btn-cta {
    background-color: #34A853;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.btn-cta:hover {
    background-color: #2c8f45;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------
   FASE 3.5 - SECCIÓN "EXPLORAR ZONAS"
   ------------------------- */
.locations-section {
    padding: 0 5% 60px 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.section-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: #34A853;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.locations-section .section-title {
    margin-bottom: 15px;
}

.locations-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    position: relative;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.location-card:hover .location-card-bg {
    transform: scale(1.05);
    opacity: 1;
}

.location-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    color: white;
    text-align: left;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.location-card-content .property-count {
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.location-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.more-details {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.more-details i {
    font-size: 0.7rem;
}

/* -------------------------
   FASE 5 - PÁGINA DE PROPIEDADES (Layout)
   ------------------------- */
.properties-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 80vh;
}

/* -------------------------
   FASE 5 - SIDEBAR
   ------------------------- */
.sidebar-filters {
    background-color: #004a98;
    color: white;
    padding: 30px 25px;
}

.sidebar-filters h3 {
    font-size: 1.4rem;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-list label {
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-list input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s ease;
}

.custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 14px;
    color: #004a98;
    transition: transform 0.1s ease-in-out;
}

.filter-list input[type="checkbox"]:checked + .custom-checkbox {
    background-color: white;
}

.filter-list input[type="checkbox"]:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
}

.filter-list label:hover .custom-checkbox {
    background-color: #ddd;
}

/* -------------------------
   FASE 5 - CONTENIDO PRINCIPAL
   ------------------------- */
.main-content-filters {
    background-color: #f4f4f4;
    padding: 30px;
}

.top-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.top-filter-bar .search-dropdown-container {
    flex: 1;
    min-width: 180px;
}

.top-filter-bar .dropdown-toggle {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.top-filter-bar .dropdown-toggle:hover {
    background-color: #e9e9e9;
}

.main-content-filters .properties-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* -------------------------
   FASE 7 - PÁGINA DETALLE
   ------------------------- */
.property-detail-page {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.property-detail-page .container {
    background-color: white;
    max-width: 900px;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.detail-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}

.detail-header .property-price {
    font-size: 2.0rem;
    font-weight: 700;
    color: #28a745;
}

.detail-gallery {
    margin-bottom: 30px;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    opacity: 0;
}

.gallery-main-image:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.left { left: 15px; }
.gallery-nav.right { right: 15px; }

.gallery-nav:hover { background-color: rgba(0, 0, 0, 0.7); }

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gallery-thumbnails .thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.gallery-thumbnails .thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnails .thumbnail.active {
    opacity: 1;
    border-color: #004a98;
}

.detail-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-item i {
    font-size: 1.8rem;
    color: #004a98;
}

.feature-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.detail-description-section {
    margin-bottom: 30px;
}

.detail-description-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-description-section div {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.detail-description-section div p {
    margin-bottom: 15px;
}

.detail-table-white, .detail-table-blue {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.detail-table-white table, .detail-table-blue table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table-white td, .detail-table-blue td {
    padding: 15px;
    font-size: 1rem;
}

.detail-table-white td:first-child {
    font-weight: 600;
    color: #333;
    width: 30%;
}

.detail-table-white tr:not(:last-child) td {
    border-bottom: 1px solid #eee;
}

.detail-table-white {
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

.detail-table-blue h3 {
    background-color: #004a98;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
}

.detail-table-blue table {
    background-color: #e6f0fa;
}

.detail-table-blue td:first-child {
    font-weight: 600;
    color: #003366;
    width: 50%;
}

.detail-table-blue td {
    color: #333;
}

.detail-table-blue tr:not(:last-child) td {
    border-bottom: 1px solid #cce0f5;
}

.detail-map-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------
   FASE 8 - PÁGINA ESTÁTICA
   ------------------------- */
.static-page-content {
    background-color: #f4f4f4;
    padding: 60px 0;
    min-height: 70vh;
}

.static-page-content .container {
    max-width: 900px;
    background-color: white;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.static-page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.privacy-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #004a98;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-content p, 
.privacy-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-content strong {
    color: #333;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ol {
    list-style: decimal;
    padding-left: 30px;
    margin-bottom: 20px;
}

.privacy-content ol li {
    margin-bottom: 10px;
}

/* =============================================
   ESTILOS PARA MENSAJE DE FORMULARIO ENVIADO
   ============================================= */

.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.form-success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.form-success-message .icon-check {
    color: #28a745;
    font-size: 50px;
    margin-bottom: 20px;
}

.form-success-message h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.form-success-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.form-success-ok-btn {
    background-color: #004a98;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-success-ok-btn:hover {
    background-color: #003366;
}