﻿/* ===== ROOT VARIABLES ===== */
:root {
    /* Colores oficiales URH Solution */
    --primary-color: #E0D369;        /* Amarillo oficial */
    --primary-dark: #C7BC4F;         /* Amarillo oscuro */
    --secondary-color: #DE8B64;      /* Naranja oficial */
    --secondary-dark: #D4754B;       /* Naranja oscuro */
    --tertiary-color: #536F75;       /* Gris oficial */
    --tertiary-dark: #435862;        /* Gris oscuro */
    
    /* Colores de apoyo */
    --text-color: #2C3E50;           /* Texto principal oscuro */
    --text-dark: #2C3E50;            /* Texto oscuro principal */
    --text-light: #536F75;           /* Texto secundario (gris oficial) */
    --bg-light: #FAFAFA;             /* Fondo claro */
    --white: #FFFFFF;
    --black: #2C2C2C;                /* Negro suave */
    
    /* Tonos adicionales para gradientes y variaciones */
    --gradient-primary: linear-gradient(135deg, #E0D369 0%, #DE8B64 100%);
    --gradient-secondary: linear-gradient(135deg, #536F75 0%, #E0D369 100%);
    --accent-light: #F5F3E7;         /* Amarillo muy claro para fondos */
    --accent-orange: #FFF4F0;        /* Naranja muy claro para fondos */
    --accent-gray: #F8F9FA;          /* Gris muy claro para fondos */
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-size-base: 14px;
    --font-size-h1: 38px;
    --font-size-h2: 36px;
    --font-size-h3: 21px;
    --line-height-base: 1.72;
    
    /* Spacing */
    --container-max-width: 1240px;
    --section-padding: 80px 0;
    --border-radius: 0px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 87.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 30px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 18px 38px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: var(--bg-light);
    color: var(--blue-health);
    fill: var(--blue-health);
}

.btn-whatsapp:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-phone {
    background-color: var(--primary-color);
    color: var(--black);
}

.btn-phone:hover {
    background-color: var(--primary-dark);
}

.btn-service {
    background-color: var(--white);
    color: var(--tertiary-color);
    border: 2px solid var(--white);
}

.btn-service:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--white);
    border-bottom: 1px solid #f2f2f2;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1em 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    max-width: 90px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 0 20px;
    color: var(--black);
    font-weight: 400;
    line-height: 70px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ===== HERO SECTION - NEW ===== */

/* Index Hero Section Redesigned */
.index-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.index-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Media/banner/Banner.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.index-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(7,90,174,0) 0%, var(--secondary-color) 100%);
    opacity: 0.9;
    z-index: 2;
}

.index-hero-new .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.index-hero-content {
    text-align: center;
    color: white;
    padding: 250px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.index-main-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--bg-light);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.24;
    display: block;
}

.index-title-spacer {
    height: 25px;
    width: 100%;
    display: block;
}

.index-main-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1;
}

.index-button-spacer {
    height: 30px;
    width: 100%;
    display: block;
}

.index-cta-button {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

/* Mobile Styles for Index Hero New */
@media (max-width: 768px) {
    .index-hero-content {
        padding: 150px 20px;
    }
    
    .index-main-title {
        font-size: 35px;
    }
    
    .index-title-spacer {
        height: 20px;
    }
    
    .index-main-subtitle {
        font-size: 20px;
    }
    
    .index-button-spacer {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .index-hero-content {
        padding: 100px 15px;
    }
    
    .index-main-title {
        font-size: 28px;
    }
    
    .index-title-spacer {
        height: 15px;
    }
    
    .index-main-subtitle {
        font-size: 18px;
    }
    
    .index-button-spacer {
        height: 20px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    background-color: var(--white);
    padding: 60px;
    margin: 50px 0;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    text-align: center;
}

/* ===== CTA SECTION SERVICIOS ===== */
.cta-section-servicios {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-dark) 100%);
    overflow: hidden;
}

.cta-background-servicios {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Media/banner_asesoria/banner-contacto.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.cta-overlay-servicios {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, rgba(83, 111, 117, 0.95) 100%);
}

.cta-content-servicios {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-info {
    color: var(--white);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

.cta-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 25px;
}

.cta-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--white);
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 60px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(222, 139, 100, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(222, 139, 100, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-cta-primary i,
.btn-cta-secondary i {
    font-size: 1.3rem;
}

/* Responsive CTA Servicios */
@media (max-width: 768px) {
    .cta-section-servicios {
        padding: 80px 0;
    }
    
    .cta-content-servicios {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-features {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-actions {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 25px;
        font-size: 1rem;
        min-height: 55px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    margin: 0 20px 0 0;
}

.service-card:last-child {
    margin-right: 0;
    margin-left: 20px;
}

.service-environment {
    background-color: var(--primary-color);  /* Amarillo oficial */
    color: var(--white);
}

.service-health {
    background-color: var(--tertiary-color);  /* Gris oficial */
    color: var(--white);
    margin: 0 10px;
}

.service-safety {
    background-color: var(--secondary-color);  /* Naranja oficial */
    color: var(--white);
}

.service-divider {
    width: 50px;
    height: 1px;
    background-color: var(--white);
    margin: 10px auto;
}

.service-title {
    font-size: var(--font-size-h3);
    color: var(--white);
    margin: 20px 0;
}

.service-description {
    color: var(--white);
    text-align: justify;
    margin-bottom: 30px;
}

/* Service Icons */
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* Service Buttons específicos por tarjeta */
.service-environment .btn-service {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.service-environment .btn-service:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.service-health .btn-service {
    background-color: var(--white);
    color: var(--tertiary-color);
    border-color: var(--white);
}

.service-health .btn-service:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.service-safety .btn-service {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.service-safety .btn-service:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== HELP SECTION ===== */
.help-section {
    padding: 15px 0;
    background-color: var(--bg-light);
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 30px;
}

.help-text {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin: 10px 0 0 0;
}

.help-text h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.help-text p {
    margin-bottom: 30px;
    font-size: 16px;
}

.help-image {
    padding: 15px 0 0 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
}

.contact-info {
    padding: 50px 80px 50px 0;
}

.contact-info h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-item {
    margin: 30px 0;
}

.contact-item h4 {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-item h4 a {
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-dark);
}

.contact-map {
    background-color: var(--white);
    padding: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 650px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-light);
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    color: var(--dark-color);
}

.footer-powered {
    text-align: right;
    color: var(--dark-color);
}

.footer-powered a {
    color: var(--dark-color);
}

.footer-powered a:hover {
    color: var(--primary-color);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding: 130px 0;
    }
    
    .hero-title {
        font-size: 35px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .about-text {
        padding: 0 50px 0 20px;
    }
    
    .about-image img {
        width: 100%;
        max-width: 100%;
        height: 409px;
        object-fit: cover;
    }
    
    .cta-section {
        padding: 120px 0;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 20px;
    }
    
    .services-grid {
        gap: 10px;
    }
    
    .service-card {
        margin: 0 10px 0 0;
    }
    
    .service-health {
        margin: 0 5px;
    }
    
    .service-safety {
        margin: 0 10px 0 0;
    }
    
    .contact-info {
        margin: 0;
        padding: 0 20px;
    }
    
    .contact-map {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 20px;
        line-height: 1;
        border-bottom: 1px solid #f2f2f2;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        background-position: center center;
    }
    
    .hero-content {
        padding: 100px 0 50px 0;
    }
    
    .hero-title {
        font-size: 25px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .about-section {
        padding: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-text {
        margin: 0;
        padding: 60px 20px;
    }
    
    .about-image {
        margin: 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-text {
        margin: 0 25px 0 0;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 15px;
    }
    
    .btn-whatsapp {
        padding: 20px 30px;
    }
    
    .services-section {
        padding: 30px 0 0 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        margin: 0 0 15px 0;
        padding: 30px;
    }
    
    .service-health {
        margin: 0 0 15px 0;
    }
    
    .service-safety {
        margin: 0 0 15px 0;
    }
    
    .btn-service {
        padding: 20px 30px;
    }
    
    .help-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .help-text {
        margin: 15px 0 0 0;
        padding: 30px 10px;
    }
    
    .help-image {
        padding: 0;
    }
    
    .contact-section {
        padding: 20px 10px 0 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        margin: 0 10px;
        padding: 0;
    }
    
    .contact-map {
        margin: 30px 0 0 0;
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .footer-powered {
        text-align: center;
    }
}

/* Extra small mobile */
@media (max-width: 544px) {
    html {
        font-size: 79.8%;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .divider {
        width: 100%;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
/* ===== SITEMAP STYLES ===== */
.sitemap-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.sitemap-column {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sitemap-column:hover {
    transform: translateY(-5px);
}

.sitemap-column h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-column h2 i {
    color: var(--primary-color);
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.sitemap-list a:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.sitemap-list a:hover:before {
    transform: translateX(5px);
}

.sitemap-sublist {
    list-style: none;
    padding: 10px 0 0 20px;
    margin-top: 10px;
}

.sitemap-sublist li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.sitemap-sublist li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.sitemap-footer {
    margin-top: 60px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sitemap-footer h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success {
    background: #25d366;
    color: white;
}

.btn-success:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== NOSOTROS PAGE STYLES ===== */

/* About Detailed Section */
.about-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-section h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
}

.about-text-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image-section {
    position: relative;
}

.about-image-section img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-section img:hover {
    transform: translateY(-10px);
}

/* Mission Vision Values Section */
.mission-vision-values {
    padding: 100px 0;
    background: white;
}

.mission-vision-values .section-title {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-vision-values .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 211, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

.mvv-card:hover::before {
    left: 100%;
}

.mvv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card {
    border-top-color: var(--tertiary-color);  /* Gris oficial */
}

.vision-card {
    border-top-color: var(--primary-color);   /* Amarillo oficial */
}

.values-card {
    border-top-color: var(--secondary-color); /* Naranja oficial */
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(224, 211, 105, 0.3);
}

.mission-card .mvv-icon {
    background: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
    box-shadow: 0 8px 20px rgba(83, 111, 117, 0.3);
}

.vision-card .mvv-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(224, 211, 105, 0.3);
}

.values-card .mvv-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    box-shadow: 0 8px 20px rgba(222, 139, 100, 0.3);
}

.mvv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mvv-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.mvv-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

.mvv-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-content ul li {
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.mvv-content ul li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Why Choose Us New Section */
.why-choose-us-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us-new .section-title {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 211, 105, 0.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Líneas superiores específicas por tarjeta */
.feature-card:nth-child(1)::after {
    background: linear-gradient(90deg, var(--tertiary-color), var(--tertiary-dark));
}

.feature-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.feature-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
}

.feature-card:nth-child(4)::after {
    background: linear-gradient(90deg, var(--tertiary-color), var(--primary-color));
}

.feature-card:nth-child(5)::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:nth-child(6)::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
}

.feature-card:nth-child(6) .feature-icon-center {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    box-shadow: 0 10px 25px rgba(222, 139, 100, 0.3);
}

.feature-icon-center {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(224, 211, 105, 0.3);
}

/* Colores específicos para cada tarjeta de características */
.feature-card:nth-child(1) .feature-icon-center {
    background: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
    box-shadow: 0 10px 25px rgba(83, 111, 117, 0.3);
}

.feature-card:nth-child(2) .feature-icon-center {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 25px rgba(224, 211, 105, 0.3);
}

.feature-card:nth-child(3) .feature-icon-center {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    box-shadow: 0 10px 25px rgba(222, 139, 100, 0.3);
}

.feature-card:nth-child(4) .feature-icon-center {
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    box-shadow: 0 10px 25px rgba(83, 111, 117, 0.3);
}

.feature-card:nth-child(5) .feature-icon-center {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 25px rgba(224, 211, 105, 0.3);
}

.feature-card:nth-child(6) .feature-icon-center {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    box-shadow: 0 10px 25px rgba(222, 139, 100, 0.3);
}

/* Tarjetas específicas por color - Sin efectos hover */
.feature-card-gray .feature-icon-center {
    background: var(--tertiary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(83, 111, 117, 0.3) !important;
}

.feature-card-yellow .feature-icon-center {
    background: var(--primary-color) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 10px 25px rgba(224, 211, 105, 0.3) !important;
}

.feature-card-orange .feature-icon-center {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(222, 139, 100, 0.3) !important;
}

.feature-icon-center i {
    font-size: 3rem;
    color: white;
}

/* Efectos hover para las tarjetas ¿Por qué elegirnos? */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-center {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.feature-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Responsive Design for Nosotros */
@media (max-width: 1024px) {
    .about-content-new {
        gap: 40px;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-content-new {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-detailed,
    .mission-vision-values,
    .why-choose-us-new {
        padding: 60px 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .mvv-icon {
        width: 70px;
        height: 70px;
    }
    
    .mvv-icon i {
        font-size: 2rem;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon-center {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-center i {
        font-size: 2.5rem;
    }
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0 40px 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.page-title {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 2px 4px;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

/* Responsive adjustments for page header */
@media (max-width: 1024px) {
    .page-header {
        padding: 50px 0 35px 0;
    }
    
    .page-header .container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .page-header {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .page-header {
        display: none !important;
    }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 90px;
        right: 10px;
    }
    
    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Adjust main content margin when page header is hidden on mobile */
@media (max-width: 768px) {
    .about-detailed {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .about-detailed {
        margin-top: 60px;
    }
}

/* Force hide page header on mobile - IMPORTANT */
@media screen and (max-width: 768px) {
    .page-header,
    section.page-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .page-header,
    section.page-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* EMERGENCY OVERRIDE - Hide page header on mobile */
section.page-header {
    display: block;
}

@media only screen and (max-width: 768px) {
    section.page-header,
    .page-header {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

@media only screen and (max-width: 480px) {
    section.page-header,
    .page-header {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* ===== SERVICIOS PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 70px;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 195, 73, 0.8) 0%, rgba(222, 139, 100, 0.8) 100%);
    z-index: 2;
}

.services-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.services-hero .breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Services Intro New */
.services-intro-new {
    padding: 100px 0;
    background: white;
}

.intro-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text-section h2 {
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
}

.intro-text-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.intro-description {
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.intro-feature:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(83, 111, 117, 0.3);
}

.intro-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.intro-feature:hover i {
    color: var(--accent-color);
}

.intro-feature span {
    font-weight: 500;
    font-size: 1.1rem;
}

.intro-image-section {
    position: relative;
}

.intro-image-section img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image-section img:hover {
    transform: translateY(-10px);
}

/* Services Detailed New */
.services-detailed-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-detailed-new .section-title {
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.service-card-enhanced {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.service-card-enhanced.environment::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.service-card-enhanced.health::before {
    background: linear-gradient(90deg, #007bff, #6f42c1);
}

.service-card-enhanced.safety::before {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.service-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 40px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 25px rgba(249, 195, 73, 0.3);
    transition: all 0.3s ease;
}

.environment .service-icon-large {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.health .service-icon-large {
    background: linear-gradient(135deg, #007bff, #6f42c1);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.safety .service-icon-large {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.service-card-enhanced:hover .service-icon-large {
    transform: scale(1.1) rotateY(180deg);
}

.service-icon-large i {
    font-size: 3.5rem;
    color: white;
}

.service-title-large {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-tagline {
    color: var(--text-color);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
}

.service-body {
    padding: 0 40px 40px;
}

.service-description-new {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.service-features h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features h4 i {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.environment .feature-item:hover {
    border-left-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.health .feature-item:hover {
    border-left-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.safety .feature-item:hover {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 20px;
}

.environment .feature-item i {
    color: #28a745;
}

.health .feature-item i {
    color: #007bff;
}

.safety .feature-item i {
    color: #dc3545;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Process Section New */
.process-section-new {
    padding: 100px 0;
    background: white;
}

.process-section-new .section-title {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.divider.divider-orange {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 24px;
}

.process-section-new .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 80px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

/* Conectores específicos por color */
.step-orange .step-connector {
    background: var(--secondary-color);
}

.step-gray .step-connector {
    background: var(--tertiary-color);
}

.step-yellow .step-connector {
    background: var(--primary-color);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(222, 139, 100, 0.18);
    margin: 0 40px;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(224, 211, 105, 0.18);
}

/* Iconos específicos por color */
.step-orange .step-icon {
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(222, 139, 100, 0.3);
}

.step-gray .step-icon {
    background: var(--tertiary-color);
    box-shadow: 0 5px 15px rgba(83, 111, 117, 0.3);
}

.step-yellow .step-icon {
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(224, 211, 105, 0.3);
}

/* Círculos específicos por color */
.step-orange .step-circle {
    background: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(222, 139, 100, 0.3);
}

.step-gray .step-circle {
    background: var(--tertiary-color);
    box-shadow: 0 8px 20px rgba(83, 111, 117, 0.3);
}

.step-yellow .step-circle {
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(224, 211, 105, 0.3);
}

.process-step:nth-child(even) .step-icon {
    margin-left: auto;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ===== SERVICIOS PAGE MOBILE STYLES ===== */

@media (max-width: 768px) {
    /* Services Hero Mobile */
    .services-hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Services Intro Mobile */
    .services-intro-new {
        padding: 60px 0;
    }
    
    .intro-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-text-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .intro-features {
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .intro-feature {
        justify-content: center;
        text-align: center;
    }
    
    /* Services Detailed Mobile */
    .services-detailed-new {
        padding: 60px 0;
    }
    
    .service-card-enhanced {
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .service-header {
        padding: 30px 20px 20px;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .service-icon-large i {
        font-size: 3rem;
    }
    
    .service-title-large {
        font-size: 1.5rem;
    }
    
    .service-body {
        padding: 0 20px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
        justify-content: center;
        text-align: center;
    }
    
    /* Process Timeline Mobile */
    .process-section-new {
        padding: 60px 0;
    }
    
    .process-timeline {
        padding: 0 20px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 50px;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center !important;
    }
    
    .step-circle {
        margin: 0 0 20px 0;
    }
    
    .step-connector {
        left: 50%;
        top: 100px;
        height: 40px;
    }
    
    .step-content {
        max-width: 100%;
    }
    
    .step-icon {
        margin: 0 auto 15px !important;
    }
    
    .step-content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card-enhanced {
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .service-header {
        padding: 20px 15px 15px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    .service-title-large {
        font-size: 1.3rem;
    }
    
    .service-body {
        padding: 0 15px 20px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
}

/* ===== SERVICES IMAGE GRID STYLES ===== */

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-items: center;
}

.service-image-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.service-image.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.service-image-card:hover .service-image.default {
    opacity: 0;
}

.service-image-card:hover .service-image.hover {
    opacity: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .service-image-card {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .services-image-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-image-card {
        border-radius: 10px;
    }
}

/* ===== FULLSCREEN SERVICES SECTIONS ===== */

.services-title-section {
    padding: 80px 0 40px 0;
    background: white;
}

.services-title-section .section-title {
    color: var(--text-dark);
    margin-bottom: 0;
}

.service-fullscreen-section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-fullscreen-card {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.service-fullscreen-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.5s ease;
    position: relative;
    display: block;
    border-radius: 15px;
}

.service-fullscreen-image.default {
    opacity: 1;
    z-index: 1;
}

.service-fullscreen-image.hover {
    opacity: 0;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-fullscreen-card:hover .service-fullscreen-image.default {
    opacity: 0;
}

.service-fullscreen-card:hover .service-fullscreen-image.hover {
    opacity: 1;
}

/* Mobile adjustments for fullscreen sections */
@media (max-width: 768px) {
    .services-title-section {
        padding: 60px 0 30px 0;
    }
    
    .service-fullscreen-section {
        padding: 20px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .service-fullscreen-card {
        width: 90%;
        max-width: none;
        margin: 0 auto;
        border-radius: 10px;
        box-sizing: border-box;
    }
    
    .service-fullscreen-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .services-title-section {
        padding: 40px 0 20px 0;
    }
    
    .service-fullscreen-section {
        padding: 15px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .service-fullscreen-card {
        width: 95%;
        margin: 0 auto;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .service-fullscreen-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
    }
}

/* Adjust top margin for services intro when banner is removed */
.services-intro-top {
    margin-top: 80px;
    padding-top: 120px;
}

@media (max-width: 768px) {
    .services-intro-top {
        margin-top: 60px;
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .services-intro-top {
        margin-top: 50px;
        padding-top: 60px;
    }
}

/* ===== MOBILE/DESKTOP IMAGE VISIBILITY ===== */

/* Por defecto, mostrar imï¿½genes de escritorio y ocultar mï¿½viles */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* En mï¿½viles, ocultar imï¿½genes de escritorio y mostrar mï¿½viles */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Deshabilitar hover en mï¿½vil */
    .service-fullscreen-card:hover .service-fullscreen-image.default {
        opacity: 1;
    }
    
    .service-fullscreen-card:hover .service-fullscreen-image.hover {
        opacity: 0;
    }
}

/* ===== PREVENT HORIZONTAL OVERFLOW ===== */

/* Asegurar que las secciones no se desborden */
.service-fullscreen-section {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.service-fullscreen-card {
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive especï¿½fico para evitar desbordamiento */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-fullscreen-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .service-fullscreen-section {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .service-fullscreen-card {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* ===== CAPACITACIONES SECTION STYLES ===== */

.capacitaciones-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.capacitaciones-section .section-title {
    color: var(--text-dark);
    margin-bottom: 60px;
}

.capacitaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.capacitacion-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.capacitacion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.capacitacion-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.capacitacion-image.default {
    opacity: 1;
    z-index: 1;
}

.capacitacion-image.hover {
    opacity: 0;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capacitacion-card:hover .capacitacion-image.default {
    opacity: 0;
}

.capacitacion-card:hover .capacitacion-image.hover {
    opacity: 1;
}

/* Mobile responsiveness for capacitaciones */
@media (max-width: 1024px) {
    .capacitaciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .capacitaciones-section {
        padding: 60px 0;
    }
    
    .capacitaciones-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .capacitacion-card {
        border-radius: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .capacitacion-image {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .capacitaciones-section {
        padding: 40px 0;
    }
    
    .capacitaciones-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .capacitacion-card {
        border-radius: 10px;
        max-width: 350px;
    }
    
    .capacitacion-image {
        border-radius: 10px;
    }
}


/* Por defecto en desktop, ocultar imágenes móviles de capacitaciones */
.capacitacion-card .mobile-only {
    display: none;
}

.capacitacion-card .desktop-only {
    display: block;
}
/* ===== CAPACITACIONES MOBILE/DESKTOP IMAGE VISIBILITY ===== */

/* En móviles para capacitaciones, ocultar imágenes de escritorio y mostrar móviles */
@media (max-width: 768px) {
    .capacitacion-card .desktop-only {
        display: none !important;
    }
    
    .capacitacion-card .mobile-only {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Deshabilitar hover en móvil para capacitaciones */
    .capacitacion-card:hover .capacitacion-image.default {
        opacity: 1;
    }
    
    .capacitacion-card:hover .capacitacion-image.hover {
        opacity: 0;
    }
}

/* ===== CONTACT PAGE ENHANCED STYLES - NEW ===== */

/* Contact Hero Section Redesigned */
.contacto-hero-new {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.contacto-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Media/banner_asesoria/banner-contacto.png') center center/cover no-repeat;
    z-index: 1;
}

.contacto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.contacto-hero-new .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contacto-hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contacto-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
    display: block;
}

.contacto-title-spacer {
    height: 40px;
    width: 100%;
    display: block;
}

.contacto-main-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Header Section */
.contact-header-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent-gray) 100%);
    border-bottom: 1px solid rgba(83, 111, 117, 0.1);
    margin-top: 80px;
}

.contact-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header-text {
    color: var(--text-dark);
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

.contact-title-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 25px;
}

.contact-main-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
    font-weight: 400;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(83, 111, 117, 0.2);
}

.contact-icon-large i {
    font-size: 4rem;
    color: var(--white);
}

/* Responsive Contact Header */
@media (max-width: 768px) {
    .contact-header-section {
        padding: 100px 0 60px 0;
        margin-top: 60px;
    }
    
    .contact-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .contact-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .contact-features {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .contact-icon-large i {
        font-size: 3rem;
    }
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Contact Cards Wrapper */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-intro-new {
    text-align: center;
    margin-bottom: 80px;
}

.contact-intro-new .section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-intro-new .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Enhanced */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(83, 111, 117, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    border-top: 4px solid var(--secondary-color);
    height: fit-content;
    min-height: 600px;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(83, 111, 117, 0.15);
    border-color: var(--tertiary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(222, 139, 100, 0.3);
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-header h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-header p {
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-form-enhanced .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form-enhanced .form-group {
    margin-bottom: 25px;
}

.contact-form-enhanced label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tertiary-color);
    font-size: 1.1rem;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--accent-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    color: var(--text-dark);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(222, 139, 100, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--secondary-color);
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(222, 139, 100, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 139, 100, 0.4);
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
}

/* Contact Info Enhanced */
.contact-info-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(83, 111, 117, 0.1);
    height: fit-content;
    min-height: 600px;
    border: 2px solid transparent;
    border-top: 4px solid var(--tertiary-color);
    transition: all 0.3s ease;
}

.contact-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(83, 111, 117, 0.15);
    border-color: var(--primary-color);
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(83, 111, 117, 0.3);
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-header h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.info-header p {
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    background: white;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(224, 211, 105, 0.3);
    transition: all 0.3s ease;
}

.card-icon i {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(224, 211, 105, 0.4);
}

.info-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-content h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.card-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: var(--secondary-color);
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.call-btn {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.call-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-section h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-icons-enhanced {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Map Section Enhanced */
.map-section-enhanced {
    padding: 100px 0;
    background: white;
}

.map-container-enhanced {
    text-align: center;
    margin-bottom: 60px;
}

.map-header {
    margin-bottom: 40px;
}

.map-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(249, 195, 73, 0.3);
}

.map-icon-container i {
    font-size: 2rem;
    color: white;
}

.map-header h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.map-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* CTA Section Enhanced */
.cta-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-section-enhanced .container {
    position: relative;
    z-index: 2;
}

.cta-content-enhanced {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.cta-content-enhanced h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content-enhanced p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-btn-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.cta-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 1;
}

.cta-btn-enhanced:hover::before {
    left: 100%;
}

.cta-btn-enhanced > * {
    position: relative;
    z-index: 2;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-enhanced i {
    font-size: 1.3rem;
}

/* Mobile Styles for Contact Hero New */
@media (max-width: 768px) {
    .contacto-hero-new {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }
    
    .contacto-main-title {
        font-size: 2.8rem;
    }
    
    .contacto-title-spacer {
        height: 30px;
    }
    
    .contacto-main-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-intro-new {
        margin-bottom: 50px;
    }
    
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .form-icon,
    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .form-icon i,
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .form-header h3,
    .info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-enhanced .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1.1rem;
    }
    
    .map-section-enhanced {
        padding: 60px 0;
    }
    
    .map-container-enhanced {
        margin-bottom: 40px;
    }
    
    .map-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .map-icon-container i {
        font-size: 1.5rem;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .cta-section-enhanced {
        padding: 60px 0;
    }
    
    .cta-content-enhanced {
        margin-bottom: 40px;
    }
    
    .cta-buttons-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-btn-enhanced {
        padding: 18px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contacto-hero-new {
        height: 40vh;
        min-height: 300px;
    }
    
    .contacto-main-title {
        font-size: 2.2rem;
    }
    
    .contacto-title-spacer {
        height: 25px;
    }
    
    .contacto-main-subtitle {
        font-size: 1rem;
    }
    
    .contacto-hero-content {
        padding: 0 15px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 25px 15px;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 40px;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .cta-buttons-enhanced {
        max-width: 100%;
    }
}

/* ===== END CONTACT PAGE ENHANCED STYLES ===== */

/* ===== SERVICES PAGE HERO STYLES - NEW ===== */

/* Services Hero Section Redesigned */
.servicios-hero-new {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.servicios-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Media/servicios/banner-servicios.png') center center/cover no-repeat;
    z-index: 1;
}

.servicios-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.servicios-hero-new .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.servicios-hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.servicios-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
    display: block;
}

.servicios-title-spacer {
    height: 40px;
    width: 100%;
    display: block;
}

.servicios-main-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Styles for Services Hero New */
@media (max-width: 768px) {
    .servicios-hero-new {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }
    
    .servicios-main-title {
        font-size: 2.8rem;
    }
    
    .servicios-title-spacer {
        height: 30px;
    }
    
    .servicios-main-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .servicios-hero-new {
        height: 40vh;
        min-height: 300px;
    }
    
    .servicios-main-title {
        font-size: 2.2rem;
    }
    
    .servicios-title-spacer {
        height: 25px;
    }
    
    .servicios-main-subtitle {
        font-size: 1rem;
    }
    
    .servicios-hero-content {
        padding: 0 15px;
    }
}

/* ===== END SERVICES PAGE HERO STYLES - NEW ===== */

/* ===== CONTACTO PAGE HERO STYLES - NEW ===== */

/* Contacto Hero Section */
.contacto-hero-new {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.contacto-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Media/banner/banner-contacto.png') center center/cover no-repeat;
    z-index: 1;
}

.contacto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.contacto-hero-new .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contacto-hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contacto-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
    display: block;
}

.contacto-title-spacer {
    height: 40px;
    width: 100%;
    display: block;
}

.contacto-main-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Styles for Contacto Hero New */
@media (max-width: 768px) {
    .contacto-hero-new {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }
    
    .contacto-main-title {
        font-size: 2.2rem;
    }
    
    .contacto-title-spacer {
        height: 25px;
    }
    
    .contacto-main-subtitle {
        font-size: 1rem;
    }
    
    .contacto-hero-content {
        padding: 0 15px;
    }
}

/* ===== END CONTACTO PAGE HERO STYLES - NEW ===== */

/* ===== NOSOTROS PAGE HERO STYLES - NEW ===== */

/* Nosotros Hero Section Redesigned */
.nosotros-hero-new {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.nosotros-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Media/nosotros/banner_nosotros.png') center center/cover no-repeat;
    z-index: 1;
}

.nosotros-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.nosotros-hero-new .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.nosotros-hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.nosotros-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
    display: block;
}

.nosotros-title-spacer {
    height: 40px;
    width: 100%;
    display: block;
}

.nosotros-main-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Styles for Nosotros Hero New */
@media (max-width: 768px) {
    .nosotros-hero-new {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }
    
    .nosotros-main-title {
        font-size: 2.8rem;
    }
    
    .nosotros-title-spacer {
        height: 30px;
    }
    
    .nosotros-main-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nosotros-hero-new {
        height: 40vh;
        min-height: 300px;
    }
    
    .nosotros-main-title {
        font-size: 2.2rem;
    }
    
    .nosotros-title-spacer {
        height: 25px;
    }
    
    .nosotros-main-subtitle {
        font-size: 1rem;
    }
    
    .nosotros-hero-content {
        padding: 0 15px;
    }
}

/* ===== SUCCESS MODAL STYLES ===== */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: bounce 0.6s ease;
}

.modal h3 {
    color: var(--tertiary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--tertiary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== END NOSOTROS PAGE HERO STYLES - NEW ===== */