/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    min-height: 100vh;
}

/* Sección principal con imagen de fondo */
.hero-section {
    background-image: url('fca.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Logo y nombre del estudio */
.logo-section {
    flex: 0 0 auto;
    margin-bottom: 2rem;
}

.logo-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: white;
    font-weight: normal;
}

.firm-name {
    display: flex;
    flex-direction: column;
    color: #D4AF37;
    font-weight: bold;
}

.firm-line {
    font-size: 1.2rem;
    line-height: 1.1;
}

.firm-subtitle {
    font-size: 0.8rem;
    margin-top: 0.2rem;
    letter-spacing: 2px;
}

/* Texto principal */
.main-text {
    flex: 1;
    text-align: left;
    color: white;
    margin-left: 2rem;
}

.year {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Sección de actualización */
.update-section {
    background: linear-gradient(135deg, #E6F3FF 0%, #B8E0FF 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.update-content {
    max-width: 800px;
    margin: 0 auto;
}

.update-title {
    font-size: 3rem;
    color: #8B4513;
    font-weight: normal;
    line-height: 1.3;
}

/* Sección de contacto */
.contact-section {
    background-color: #1B4332;
    color: white;
    padding: 3rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .main-text {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .update-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 1.5rem;
    }
    
    .signature {
        font-size: 2rem;
    }
    
    .firm-line {
        font-size: 1rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .update-section {
        padding: 3rem 1.5rem;
    }
    
    .update-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-section {
        min-height: 40vh;
        padding: 1rem;
    }
    
    .logo-text {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .signature {
        font-size: 1.5rem;
    }
    
    .firm-line {
        font-size: 0.9rem;
    }
    
    .main-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .year {
        font-size: 0.9rem;
    }
    
    .update-section {
        padding: 2rem 1rem;
    }
    
    .update-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .contact-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 320px) {
    .main-title {
        font-size: 1rem;
    }
    
    .update-title {
        font-size: 1.3rem;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-info {
        font-size: 0.8rem;
    }
}

