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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.logo-najera,
.logo-montiel {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a4a;
    letter-spacing: 2px;
}

.logo-icon {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.logo-subtitle {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #1a2a4a;
    border-top: 1px solid #c9a227;
    padding-top: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #c9a227;
}

.btn-agenda {
    background-color: #1a2a4a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-agenda:hover {
    background-color: #2a3a5a;
}

/* Hero Section */
.hero {
    background-color: #4a5568;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-card {
    flex: 1;
    max-width: 500px;
}

.hero-image {
    position: relative;
    background: linear-gradient(135deg, #1a2a4a 0%, #2d3748 100%);
    border-radius: 0;
    overflow: hidden;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 42, 74, 0.95));
    padding: 100px 30px 30px;
    color: #fff;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.hero-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c9a227;
}

.hero-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-icon.etica {
    color: #c9a227;
}

.feature-icon.etica i {
    background: linear-gradient(135deg, #c9a227, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon.eficiencia {
    color: #c9a227;
}

.feature-icon.eficiencia i {
    color: #c9a227;
}

.feature-icon.transparencia {
    color: #c9a227;
}

.feature-icon.transparencia i {
    color: #c9a227;
}

.feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #c9a227;
    margin-bottom: 5px;
}

.feature-text p {
    color: #fff;
    font-size: 0.9rem;
}

/* Mission Section */
.mission {
    background-color: #d1d5db;
    padding: 60px 0;
}

.mission-header {
    margin-bottom: 30px;
}

.mission-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2a4a;
    margin-bottom: 5px;
}

.mission-header .subtitle {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.mission-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.mission-text {
    flex: 1.5;
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Values Section */
.values {
    background-color: #4a5568;
    padding: 60px 0;
}

.values-header {
    margin-bottom: 30px;
}

.values-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.values-header .subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.values-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.values-text {
    flex: 1.5;
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.values-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
}

.values-text p:last-child {
    margin-bottom: 0;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Values Icons Section */
.values-icons {
    background-color: #d1d5db;
    padding: 60px 0;
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.icon-item {
    text-align: center;
    max-width: 200px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background-color: transparent;
}

.icon-circle i {
    font-size: 2rem;
    color: #c9a227;
}

.icon-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2a4a;
    margin-bottom: 5px;
}

.icon-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a2a4a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-bottom: 20px;
}

.footer-logo .logo-najera,
.footer-logo .logo-montiel {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-subtitle {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: #c9a227;
    border-top: 1px solid #c9a227;
    padding-top: 2px;
}

.footer-address {
    margin-top: 25px;
}

.footer-address p {
    font-size: 0.85rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-map {
    flex-shrink: 0;
}

.footer-map iframe {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   QUIENES SOMOS PAGE STYLES
   ============================================ */

/* Vision Hero Section */
.vision-hero {
    background-color: #1a2a4a;
    padding: 60px 0;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-card {
    flex: 1.2;
    max-width: 600px;
}

.vision-image {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.7) 0%, rgba(45, 55, 72, 0.7) 100%),
                url('quien.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
}

.vision-overlay {
    padding: 40px;
    color: #fff;
}

.vision-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.vision-overlay p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.95;
}

.vision-features {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vision-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c9a227;
}

.vision-icon i {
    color: #c9a227;
}

.vision-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #c9a227;
    margin-bottom: 5px;
}

.vision-text p {
    color: #fff;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background-color: #d1d5db;
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.3;
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* About Values Icons Section */
.about-values-icons {
    background-color: #4a5568;
    padding: 80px 0;
}

.about-values-icons .icons-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.about-values-icons .icon-item {
    text-align: center;
    max-width: 220px;
}

.about-values-icons .icon-circle {
    width: 90px;
    height: 90px;
    border: 2px solid #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background-color: transparent;
}

.about-values-icons .icon-circle i {
    font-size: 2.2rem;
    color: #c9a227;
}

.about-values-icons .icon-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.about-values-icons .icon-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   ÁREAS DE SERVICIO PAGE STYLES
   ============================================ */

/* Services Hero Section */
.services-hero {
    background-color: #1a2a4a;
    padding: 60px 0;
}

.services-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-hero-image {
    flex: 1.2;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.7) 0%, rgba(45, 55, 72, 0.7) 100%),
                url('fot.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
}

.services-hero-overlay {
    padding: 40px;
    color: #fff;
}

.services-hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.services-hero-overlay p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.95;
}

.services-hero-features {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.services-hero-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c9a227;
    flex-shrink: 0;
}

.services-hero-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #c9a227;
    margin-bottom: 5px;
}

.services-hero-text p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Specializations Section */
.specializations {
    background-color: #d1d5db;
    padding: 80px 0;
}

.specializations h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2a4a;
    margin-bottom: 50px;
    text-align: left;
}

.spec-content {
    display: flex;
    gap: 50px;
}

.spec-menu {
    flex: 0.4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-btn {
    background-color: #1a2a4a;
    color: #c9a227;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.spec-btn:hover,
.spec-btn.active {
    background-color: #c9a227;
    color: #1a2a4a;
}

.spec-details {
    flex: 0.6;
    background-color: #fff;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #c9a227;
}

.service-detail {
    display: none;
}

.service-detail.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.service-detail .subtitle {
    color: #c9a227;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.service-detail p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.service-detail p:last-child {
    margin-bottom: 0;
}

/* About Services Section */
.about-services {
    background-color: #4a5568;
    padding: 80px 0;
}

.about-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-services p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Responsive */
@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav ul {
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
    }

    .hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mission-content {
        flex-direction: column;
    }

    .values-content {
        flex-direction: column;
    }

    .vision-content {
        flex-direction: column;
        gap: 40px;
    }

    .vision-card {
        max-width: 100%;
        width: 100%;
    }

    .vision-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        flex-direction: column;
    }

    .about-values-icons .icons-grid {
        gap: 50px;
    }

    .services-hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-hero-image {
        max-width: 100%;
        width: 100%;
    }

    .services-hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .spec-content {
        flex-direction: column;
        gap: 30px;
    }

    .spec-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .spec-btn {
        flex: 1;
        min-width: 150px;
    }

    .spec-details {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .icons-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav ul {
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
    }

    .hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mission-content {
        flex-direction: column;
    }

    .values-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .icons-grid {
        gap: 40px;
    }

    .vision-content {
        flex-direction: column;
        gap: 40px;
    }

    .vision-card {
        max-width: 100%;
        width: 100%;
    }

    .vision-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        flex-direction: column;
    }

    .about-values-icons .icons-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        text-align: center;
        flex-direction: column;
    }

    .logo-najera,
    .logo-montiel {
        font-size: 1.2rem;
    }

    .icons-grid {
        gap: 30px;
    }

    .footer-map iframe {
        width: 100%;
        max-width: 350px;
    }

    .vision-features {
        flex-direction: column;
        align-items: center;
    }

    .vision-feature {
        text-align: center;
        flex-direction: column;
    }

    .vision-overlay h1 {
        font-size: 1.5rem;
    }

    .about-values-icons .icons-grid {
        gap: 35px;
    }

    .services-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .services-hero-feature {
        text-align: center;
        flex-direction: column;
    }

    .services-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .specializations h2 {
        font-size: 1.5rem;
    }

    .spec-menu {
        flex-direction: column;
    }

    .spec-btn {
        flex: 1;
        min-width: auto;
    }

    .contact-info-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info h1 {
        font-size: 2rem;
    }

    .appointment-section h1 {
        font-size: 2rem;
    }

    .appointment-form {
        padding: 25px;
    }

    .legal-notice-section h1 {
        font-size: 2rem;
    }

    .legal-text {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .btn-agenda {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-overlay h1 {
        font-size: 1.1rem;
    }

    .hero-overlay h2 {
        font-size: 1.2rem;
    }

    .mission-header h2,
    .values-header h2 {
        font-size: 1.5rem;
    }

    .mission-text,
    .values-text {
        padding: 20px;
    }

    .icons-grid {
        gap: 25px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }

    .vision-image {
        height: 350px;
    }

    .vision-overlay {
        padding: 25px;
    }

    .vision-overlay h1 {
        font-size: 1.3rem;
    }

    .about-text {
        padding: 20px;
    }

    .about-values-icons .icon-circle {
        width: 70px;
        height: 70px;
    }

    .about-values-icons .icon-circle i {
        font-size: 1.8rem;
    }

    .contact-info h1 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-text a {
        font-size: 1.3rem;
    }

    .map-frame {
        border-width: 3px;
    }

    .map-frame img {
        height: 250px;
    }

    .appointment-section h1 {
        font-size: 1.8rem;
    }

    .appointment-form {
        padding: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        margin-bottom: 15px;
    }

    .legal-notice-section h1 {
        font-size: 1.8rem;
    }

    .legal-text {
        padding: 20px;
        font-size: 0.9rem;
    }

    .legal-text ul {
        margin: 15px 0 15px 20px;
    }

    .legal-text ul li {
        margin-bottom: 10px;
    }
}

/* ============================================
   CONTACTO PAGE STYLES
   ============================================ */

/* Contact Info Section */
.contact-info-section {
    background-color: #4a5568;
    padding: 80px 0;
}

.contact-info-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #c9a227;
    flex-shrink: 0;
}

.contact-text a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #c9a227;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-text a:hover {
    opacity: 0.8;
}

.contact-map {
    flex: 1;
}

.map-frame {
    width: 100%;
    border: 4px solid #1a2a4a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Appointment Form Section */
.appointment-section {
    background-color: #d1d5db;
    padding: 80px 0;
}

.appointment-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a4a;
    margin-bottom: 50px;
}

.appointment-form {
    background-color: #fff;
    padding: 40px;
    border-left: 4px solid #c9a227;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: #f5f5f5;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #444;
    transition: background-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #efefef;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    background-color: #1a2a4a;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

.form-submit:hover {
    background-color: #2a3a5a;
}

.form-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
}

#form-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   AVISO LEGAL PAGE STYLES
   ============================================ */

/* Legal Notice Section */
.legal-notice-section {
    background-color: #d1d5db;
    padding: 80px 0;
}

.legal-notice-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a4a;
    margin-bottom: 50px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-text {
    background-color: #1a2a4a;
    color: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-text ul {
    margin: 20px 0 20px 25px;
    list-style-type: disc;
}

.legal-text ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
}

.legal-text ul li:last-child {
    margin-bottom: 0;
}

/* Footer Legal Link */
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Responsive */
