/* Hero Section - Estilos para propiedad intelectual */
.fichas-hero {
    color: white;
    padding: 4rem 2rem;
    margin: 2rem auto;
    width: 100%;
    max-width: min(1400px, 95vw);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

.fichas-title {
    font-family: "Outfit", Helvetica;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.fichas-subtitle {
    font-family: "Dosis", Helvetica;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-header {
    background: linear-gradient(135deg, #16BFB2 0%, #14ADDD 100%);
    border: none;
    padding: 1.5rem;
}

.property-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

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

.property-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #16BFB2;
    border-radius: 3px;
}

.property-item p {
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.property-item strong {
    color: #0B67B2;
}

/* Container spacing - Solo aplicar en desktop */
@media (min-width: 769px) {
    .container {
        padding-right: 0 !important;
    }

    .container .row {
        margin-right: 0 !important;
    }

    .container [class*="col-"] {
        padding-right: 0.5rem !important;
    }
}

/* Hero Icon */
.hero-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-icon {
    width: 120px;
    height: 120px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Property Section */
.property-section {
    background-color: #f8f9fa;
}

.property-card {
    border-radius: 15px;
    overflow: hidden;
}

.property-card-header {
    background: linear-gradient(135deg, #16BFB2 0%, #14ADDD 100%);
    border: none;
    padding: 1.5rem;
}

.property-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.property-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.property-card-body {
    padding: 1.5rem;
}

/* Responsive - Tablets grandes */
@media (max-width: 992px) {
    .fichas-hero {
        padding: 3rem 1.5rem;
        margin: 1.5rem auto;
        min-height: 280px;
    }
    
    .fichas-title {
        font-size: 3rem;
    }
    
    .fichas-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-icon {
        width: 100px;
        height: 100px;
    }
    
    .property-section {
        padding: 3rem 0 !important;
    }
    
    .property-card-header {
        padding: 1.25rem;
    }
    
    .property-card-header h3 {
        font-size: 1.35rem;
    }
    
    .property-icon {
        font-size: 1.15rem;
        margin-right: 0.45rem;
    }
    
    .property-card-body {
        padding: 1.25rem;
    }
}

/* Responsive - Tablets y móviles grandes */
@media (max-width: 768px) {
    .fichas-hero {
        padding: 2.5rem 1.25rem;
        margin: 1.25rem 0.5rem;
        border-radius: 15px;
        min-height: 250px;
    }
    
    .fichas-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .fichas-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .hero-icon-container {
        margin-bottom: 1.25rem;
    }
    
    .hero-icon {
        width: 90px;
        height: 90px;
    }
    
    .property-section {
        padding: 2rem 0 !important;
    }
    
    .property-card {
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .property-card-header {
        padding: 1.15rem;
    }
    
    .property-card-header h3 {
        font-size: 1.25rem;
        flex-direction: row;
        align-items: center;
    }
    
    .property-icon {
        font-size: 1.15rem;
        margin-right: 0.5rem;
    }
    
    .property-card-body {
        padding: 1.15rem;
    }
    
    .property-item {
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .property-item::before {
        width: 4px;
    }
    
    .property-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .container [class*="col-"] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* Responsive - Móviles */
@media (max-width: 576px) {
    .fichas-hero {
        padding: 2rem 1rem;
        margin: 1rem 0.25rem;
        border-radius: 12px;
        min-height: 220px;
    }
    
    .fichas-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.65rem;
    }
    
    .fichas-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .hero-icon-container {
        margin-bottom: 1rem;
    }
    
    .hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .property-section {
        padding: 1.5rem 0 !important;
    }
    
    .property-card {
        margin: 0 0.25rem;
        border-radius: 10px;
    }
    
    .property-card-header {
        padding: 1rem;
    }
    
    .property-card-header h3 {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    
    .property-icon {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
    
    .property-card-body {
        padding: 1rem;
    }
    
    .property-item {
        padding-left: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .property-item::before {
        width: 3px;
    }
    
    .property-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .property-item strong {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .container [class*="col-"] {
        padding-left: 0.4rem !important;
        padding-right: 0.4rem !important;
    }
}

/* Responsive - Móviles muy pequeños */
@media (max-width: 375px) {
    .fichas-hero {
        padding: 1.5rem 0.75rem;
        margin: 0.75rem 0.15rem;
        border-radius: 10px;
        min-height: 200px;
    }
    
    .fichas-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .fichas-subtitle {
        font-size: 0.95rem;
        padding: 0 0.25rem;
    }
    
    .hero-icon {
        width: 70px;
        height: 70px;
    }
    
    .property-section {
        padding: 1.25rem 0 !important;
    }
    
    .property-card {
        margin: 0 0.15rem;
        border-radius: 8px;
    }
    
    .property-card-header {
        padding: 0.85rem;
    }
    
    .property-card-header h3 {
        font-size: 1rem;
    }
    
    .property-icon {
        font-size: 0.95rem;
        margin-right: 0.35rem;
    }
    
    .property-card-body {
        padding: 0.85rem;
    }
    
    .property-item {
        padding-left: 0.85rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }
    
    .property-item p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .property-item strong {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .container {
        padding-left: 0.4rem !important;
        padding-right: 0.4rem !important;
    }
    
    .container [class*="col-"] {
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
    }
}

