/* ===================================
   PROPIETARIOS.CSS
   Estilos específicos para la landing de propietarios
   Reutiliza variables y clases de styles.css
=================================== */

/* ===========================
   HERO PROPIETARIOS
=========================== */

.hero-propietarios {
    /* Opcional: podrías usar una imagen diferente */
    /* background: url("../images/propietarios-hero.jpg") center center / cover no-repeat; */
}

/* ===========================
   SECCIÓN 100% GRATIS
=========================== */

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.bg-gradient-primary::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.free-badge {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* ===========================
   SECCIÓN DE MOCKUPS
=========================== */

.mockups-section {
    position: relative;
}

.mockup-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.mockup-image-container:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.mockup-content {
    position: relative;
}

.mockup-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mockup-content h3 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.mockup-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-inline li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.feature-list-inline i.fa-check {
    font-size: 1.1rem;
}

/* ===========================
   FEATURES ADICIONALES
=========================== */

.feature-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.12);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #667eea;
    margin: 0 auto;
}

.feature-item h4 {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================
   RESPONSIVE - PROPIETARIOS
=========================== */

@media (max-width: 991px) {
    .mockup-content {
        text-align: center;
    }
    
    .mockup-content .ps-lg-4,
    .mockup-content .pe-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .mockup-badge {
        margin: 0 auto;
    }
    
    .feature-list-inline {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .free-badge {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .benefit-card {
        padding: 1.5rem !important;
    }
    
    .mockup-content h3 {
        font-size: 1.75rem;
    }
    
    .mockup-content .lead {
        font-size: 1rem;
    }
    
    .mockup-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .feature-list-inline li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .feature-icon-small {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem !important;
    }
    
    /* Círculos decorativos más pequeños */
    .bg-gradient-primary::before,
    .bg-gradient-primary::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 575px) {
    .free-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .mockup-content h3 {
        font-size: 1.5rem;
    }
    
    .mockup-badge {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Círculos decorativos aún más pequeños */
    .bg-gradient-primary::before,
    .bg-gradient-primary::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 400px) {
    .bg-gradient-primary::before,
    .bg-gradient-primary::after {
        width: 250px;
        height: 250px;
    }
}

/* Cursor pointer en mockups clicables */
.mockup-img[data-bs-toggle="modal"] {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-img[data-bs-toggle="modal"]:hover {
    transform: scale(1.02);
}

/* Modal de zoom */
#mockupModal .modal-content {
    background: rgba(0, 0, 0, 0.95) !important;
}

#mockupModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#mockupModal .btn-close:hover {
    opacity: 1;
}

#mockupModal img {
    max-height: 90vh;
    object-fit: contain;
}