/* =============================
   Estilos globales Mohamed Child
   ============================= */

/* --- INICIO: style.css --- */

/* Variables globales */
:root {
    --primary-color: #301A61;
    --primary-dark: #22104A;
    --primary-light: #EE66BB;
    --secondary-color: #e74c3c;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #2c3e50;
    --text-dark: #22223B;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #e1e5e9;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
}

/* ... (todo el contenido de style.css desde la línea 21 hasta la 2535) ... */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.3px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(48,26,97,0.2);
}

.primary-btn:hover {
    background-color: var(--primary-light);
    color: #fff;
}

.secondary-btn {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.secondary-btn:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
}

.nav-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Header con información de contacto */
.top-header {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: var(--primary-light);
    color: #fff;
}

@media (max-width: 600px) {
    .top-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .contact-info span {
        margin-right: 0;
        margin-bottom: 4px;
    }
}

/* Navegación principal */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 52px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.3px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.contact-phone a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.contact-phone a:hover {
    color: var(--primary-color);
    background-color: rgba(48, 26, 97, 0.05);
    border-color: rgba(48, 26, 97, 0.1);
}

.cta-button .btn {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.hero-phone {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.hero-phone:hover {
    color: var(--accent-color);
}

/* Beneficios section */
.benefits-section {
    padding: 80px 0 60px;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(48,26,97,0.2);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}

/* Estilos de encabezados de sección comunes */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background-color: rgba(48,26,97,0.07);
    padding: 5px 15px;
    border-radius: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Servicios Section */
.services-section {
    padding: 90px 0 70px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-white);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    position: relative;
    background-color: var(--bg-white);
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.2);
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 14.5px;
}

.services-footer {
    text-align: center;
    margin-top: 10px;
}

.services-footer p {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.2px;
}

/* Industrias section */
.industries-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.industries-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.3px;
}

.industries-section p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.industry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    cursor: pointer;
}

.industry-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.3s ease;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.industry-item span {
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 600;
    padding: 20px;
    font-size: 18px;
}

.industry-item:hover .industry-img {
    transform: scale(1.1);
}

/* Razones section */
.reasons-section {
    padding: 90px 0 70px;
    background-color: var(--bg-light);
}

.reasons-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.phone-link:hover {
    background-color: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reason-item {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.2px;
}

.reason-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

.reasons-footer {
    text-align: center;
    margin-top: 40px;
}

.reasons-footer p {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.2px;
}

/* Proceso section */
.process-section {
    padding: 90px 0 70px;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.process-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.3px;
}

.process-section p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.process-item {
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 26px;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(48,26,97,0.2);
    position: relative;
    z-index: 1;
}

.process-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

.process-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.process-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Historia section */
.history-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.history-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-content {
    max-width: 100%;
}

.history-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

.history-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.certificates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.certificate {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.certificate h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.certificate p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.certificate .btn {
    margin-top: auto;
}

/* Referencias section */
.references-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.references-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.3px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reference-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    height: 80px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.reference-item p {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.reference-location {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: normal;
}

/* Testimonios section */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.3px;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 0 15px;
    transition: transform 0.5s ease;
}

.testimonial-content {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: -0.2px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
    font-style: normal;
}

/* Estilos para el slider de testimonios */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 62, 120, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-nav.prev {
    left: -20px;
}

.slider-nav.next {
    right: -20px;
}

@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: -10px;
    }
    
    .slider-nav.next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .slider-nav {
        width: 35px;
        height: 35px;
        top: auto;
        bottom: -50px;
        transform: none;
    }
    
    .slider-nav.prev {
        left: calc(50% - 40px);
    }
    
    .slider-nav.next {
        right: calc(50% - 40px);
    }
    
    .slider-indicators {
        margin-bottom: 60px;
    }
}

/* Contacto section */
.contact-section {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.3px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 120, 0.1);
    outline: none;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-medium);
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 15px;
}

/* FAQ section */
.faq-section {
    padding: 40px 0 90px 0;
    background-color: var(--bg-light);
}

/* css/responsive.css */
@media (max-width: 767px) {
    .faq-section {
      padding: 24px 0 60px 0;
    }
  } 

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.faq-header p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 62, 120, 0.02);
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.2px;
}

.faq-toggle {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 25px;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 5px 25px 25px;
}

/* Partners section */
.partners-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--bg-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo img {
    max-width: 85%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.main-footer {
    padding: 70px 0 20px;
    background-color: #301A61;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-nav h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-nav ul,
.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Formulario Angebot */
.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    border: 2px solid var(--border-color);
}

.progress-step.active .step-icon,
.progress-step.current .step-icon {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-text,
.progress-step.current .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background-color: var(--border-color);
    margin: 0 15px;
    position: relative;
    top: -20px;
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-heading p {
    color: var(--text-medium);
}

.customer-type-selection {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.type-option {
    width: 200px;
}

.type-option input[type="radio"] {
    display: none;
}

.type-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,75,147,0.1);
}

.option-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.type-option label span {
    font-weight: 600;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-fields {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 6px;
}

.checkbox-group label {
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Estilos de menú móvil */
.mobile-menu-toggle {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background-color: var(--primary-color) !important;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #301A61 !important;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Media queries para responsive */
@media (max-width: 1100px) {
    .contact-info {
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .services-grid,
    .industries-grid,
    .reasons-grid,
    .process-grid,
    .references-grid,
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-content {
        position: relative;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 101;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 100px 30px 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .history-section .container {
        grid-template-columns: 1fr;
    }
    
    .certificates {
        padding: 30px;
    }
    
    .certificate {
        padding: 15px 0;
    }
    
    .services-grid,
    .industries-grid,
    .reasons-grid,
    .process-grid,
    .references-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
    
    .top-header-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        padding: 80px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2,
    .process-section h2,
    .history-content h2,
    .references-section h2,
    .testimonials-section h2,
    .contact-section h2,
    .faq-header h2 {
        font-size: 28px;
    }
    
    .benefit-item, 
    .service-item, 
    .industry-item, 
    .reason-item, 
    .process-item {
        padding: 25px 20px;
    }
    
    .services-grid,
    .industries-grid,
    .reasons-grid,
    .process-grid,
    .references-grid,
    .partners-grid {
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-phone, .cta-button {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .industries-grid,
    .reasons-grid,
    .process-grid,
    .references-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .certificates {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }
}

/* Páginas adicionales - Danke / Error */
.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.next-steps {
    margin-top: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.next-steps ol {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    display: flex;
    margin-bottom: 30px;
    counter-increment: steps;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
}

.step-number::before {
    content: counter(steps);
}

.step-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    margin-bottom: 20px;
}

.thanks-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-cta .btn.primary-btn {
    color: #fff !important;
}

.error-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.error-icon {
    font-size: 80px;
    color: var(--error-color);
    margin-bottom: 30px;
}

.error-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.error-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.error-options {
    margin-top: 50px;
}

.error-options h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.error-options ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.error-options li {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-options i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.option-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.option-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.option-info a {
    color: var(--primary-color);
}

.error-cta {
    margin-top: 40px;
}

.impressum-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.impressum-content h1 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.impressum-block {
    margin-bottom: 40px;
}

.impressum-block h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.impressum-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.impressum-block a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .thanks-content,
    .error-content,
    .impressum-content {
        padding: 40px 30px;
    }
    
    .thanks-content h1,
    .error-content h1 {
        font-size: 28px;
    }
    
    .next-steps li,
    .error-options ul {
        flex-direction: column;
    }
    
    .step-number,
    .error-options i {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .thanks-content,
    .error-content,
    .impressum-content {
        padding: 30px 20px;
    }
    
    .thanks-icon,
    .error-icon {
        font-size: 60px;
    }
    
    .impressum-block h2 {
        font-size: 20px;
    }
}

/* Elementos adicionales */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: block;
    background-color: var(--primary-color) !important;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color) !important;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--bg-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs span {
    font-weight: 600;
}

/* Benefit Icon */
.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

/* Simple Steps Section */
.simple-steps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.simple-steps-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.simple-steps-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

/* Responsive para los nuevos elementos */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 100;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
    
    .top-header-content {
        justify-content: center;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
}

/* Estilos para errores de formulario */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 5px;
}

/* Estado activo para navegación */
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    width: 100%;
}

/* Estilos para animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Estilos para interacciones con botones */
.btn:active {
    transform: scale(0.98);
}

/* Estado activo para checkboxes personalizados */
.checkbox-group input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

/* Servicio iconos */
.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

/* Historia section - Versión mejorada para PC */
.history-content {
    display: flex;
    gap: 80px;
    margin: 80px auto;
    align-items: center;
    max-width: 1200px;
    padding: 0 30px;
    position: relative;
}

.history-text {
    flex: 1;
    max-width: 600px;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
}

.history-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #0f3964;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.history-image {
    flex: 1;
    min-height: 400px;
    max-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
}

.history-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-info p, .contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0f3964;
}

/* Background element */
.history-content:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(15, 57, 100, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -150px;
    z-index: -1;
}

/* Media query para asegurar responsividad */
@media (max-width: 992px) {
    .history-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .history-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .history-image {
        width: 70%;
        margin: 0 auto;
        transform: none;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .history-image {
        width: 90%;
    }
}
/* Certificados */
.certificate img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Proceso section */
.process-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .history-content,
    .process-header {
        flex-direction: column;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
} 

/* Ocultar el CTA del menú móvil por defecto */
.mobile-cta-angebot {
    display: none;
} 

/* --- FIN: style.css --- */

/* --- INICIO: form-styles.css --- */

/* Estilos específicos para el formulario de solicitud */

/* ... (todo el contenido de form-styles.css desde la línea 1 hasta la 568) ... */

/* Estilos específicos para el formulario de solicitud */

/* Contenedor del formulario */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* Barra de progreso */
.form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.progress-step.current .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(0, 62, 120, 0.15);
}

.step-text {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-text,
.progress-step.current .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background-color: var(--border-color);
    margin: 0 15px;
    position: relative;
    top: -20px;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.progress-step.active + .progress-bar {
    background-color: var(--primary-color);
}

/* Encabezado del formulario */
.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-heading p {
    color: var(--text-medium);
    font-size: 15px;
}

.secondary-heading {
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.secondary-heading h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Selección de tipo de cliente/servicio */
.customer-type-selection,
.service-type-selection {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.type-option {
    width: 200px;
}

.type-option input[type="radio"] {
    display: none;
}

.type-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.type-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(0,62,120,0.03);
    box-shadow: 0 5px 15px rgba(0,75,147,0.1);
}

.option-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.type-option input[type="radio"]:checked + label .option-icon {
    transform: scale(1.1);
}

.type-option label span {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

/* Campos del formulario */
.form-fields {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 5px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-instruction {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 120, 0.1);
    outline: none;
}

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

/* Estados de validación de campos */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
    background-color: rgba(244, 67, 54, 0.03);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--success-color);
    background-color: rgba(76, 175, 80, 0.03);
}

.field-success-icon {
    position: absolute;
    right: 10px;
    top: 40px;
    color: var(--success-color);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Checkbox group */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: var(--bg-white);
}

.service-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-checkbox input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-checkbox label {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.checkbox-row {
    margin-top: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: var(--bg-white);
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-group label {
    flex: 1;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    user-select: none;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group a:hover {
    text-decoration: none;
}

/* Campos requeridos */
.required {
    color: var(--secondary-color);
    margin-left: 3px;
}

/* Navegación de formulario */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mensajes de éxito y error */
.error-message,
.success-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.error-message {
    color: var(--error-color);
    background-color: rgba(244, 67, 54, 0.08);
    border-left: 3px solid var(--error-color);
}

.success-message {
    color: var(--success-color);
    background-color: rgba(76, 175, 80, 0.08);
    border-left: 3px solid var(--success-color);
}

.step-error,
.step-success {
    text-align: center;
    margin-bottom: 20px;
}

.step-success i,
.step-error i {
    margin-right: 5px;
}

/* Footer del formulario */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 13px;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.form-security i {
    color: var(--success-color);
    font-size: 16px;
}

/* Animaciones y transiciones */
.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: translateY(2px);
}

.btn .fa-spinner {
    margin-right: 5px;
}

/* Estilos para los pasos de superficie y descripción */
#step4 .form-group h3,
#step5 .form-group h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

#step4 .form-group input[type="number"],
#step5 .form-group textarea {
    width: 100%;
    margin-top: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .customer-type-selection,
    .service-type-selection {
        flex-direction: column;
        align-items: center;
    }
    
    .type-option {
        width: 100%;
        max-width: 250px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-heading h2 {
        font-size: 22px;
    }
    
    .form-security {
        flex-direction: column;
        text-align: center;
    }

    /* Barra de progreso en móvil para 5 pasos */
    .form-progress {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .progress-bar {
        width: 30px;
        margin: 0 5px;
    }

    .step-text {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 25px 15px;
        border-radius: 8px;
    }
    
    .progress-step .step-text {
        font-size: 11px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .progress-bar {
        margin: 0 8px;
    }
    
    .form-heading h2 {
        font-size: 20px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation button {
        width: 100%;
    }
}



/* --- FIN: form-styles.css --- */

/* --- INICIO: responsive.css --- */

/**
 * Ecs-Gruppe- Responsive CSS
 * Estilos adicionales para garantizar responsividad en todos los dispositivos
 */

/* ... (todo el contenido de responsive.css desde la línea 1 hasta la 824) ... */

/**
 * Ecs-Gruppe- Responsive CSS
 * Estilos adicionales para garantizar responsividad en todos los dispositivos
 */

/* Utilidades generales */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Ajustes de base responsiva */
  html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ==================
     Navegación móvil
     ================== */
  
  /* Estilos base para dispositivos móviles */
  @media (max-width: 991px) {
    .mobile-menu-toggle {
      display: flex !important;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 24px;
      background-color: var(--primary-color) !important;
      border: none;
      cursor: pointer;
      padding: 0;
      position: relative;
      z-index: 1001;
    }
  /*Query modificada para que se mueste correctamente el icono del menu movil*/
    .mobile-menu-toggle span {
      display: block !important;
      width: 100% !important;
      height: 3px !important;
      background-color: var(--primary-color) !important;
      border-radius: 3px !important;
      margin: 4px 0 !important;
      transition: all 0.3s ease-in-out !important;
    }
  
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }
  
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }
  
    .main-nav {
      display: none;
    }
  
    .main-nav.active {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
      padding: 70px 25px 25px;
      transition: right 0.3s ease;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }
  
    .main-nav.active ul {
      flex-direction: column;
      gap: 0;
      margin-bottom: 20px;
    }
  
    .main-nav.active li {
      margin-bottom: 0;
      width: 100%;
    }
  
    .main-nav.active a.nav-link {
      display: block;
      padding: 15px 10px;
      font-size: 17px;
      color: var(--text-dark);
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.2s ease, color 0.2s ease;
    }
  
    .main-nav.active li:last-child a.nav-link {
      border-bottom: none;
    }
  
    .main-nav.active a.nav-link:hover,
    .main-nav.active a.nav-link:focus {
      background-color: var(--bg-light);
      color: var(--primary-color);
    }
  
    .main-nav .mobile-cta-angebot {
      display: none;
      margin-top: auto;
      padding-top: 25px;
      padding-bottom: 20px;
      border-top: 1px solid var(--border-color);
    }
  
    .main-nav.active .mobile-cta-angebot {
      display: block;
    }
  
    .main-nav.active .mobile-cta-angebot .btn {
      width: 100%;
      padding: 15px;
      font-size: 16px;
      text-align: center;
    }
  
    body.menu-open {
      overflow: hidden;
    }
  }
  
  /* ==================
     Grid responsivos
     ================== */
  
  .benefits-grid,
  .services-grid,
  .industries-grid,
  .reasons-grid,
  .process-grid,
  .partners-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  /* ==================
     Media Queries
     ================== */
  
  /* Dispositivos móviles (hasta 767px) */
  @media (max-width: 767px) {
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    /* Header y navegación */
    .top-header .contact-info span {
      display: none;
    }
    
    .top-header .contact-info span:last-child {
      display: inline-block;
    }
    
    .contact-phone {
      display: none;
    }
    
    .cta-button .primary-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }
    
    /* Hero section */
    .hero-section {
      padding: 2rem 0;
    }
    
    .hero-content h1 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    
    .hero-cta {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hero-cta .hero-phone {
      margin-top: 1rem;
    }
    
    /* Grids */
    .benefits-grid,
    .services-grid,
    .industries-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .reasons-grid {
      grid-template-columns: 1fr;
    }
    
    .process-grid {
      grid-template-columns: 1fr;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    /* Formulario de contacto */
    .contact-form .form-group {
      width: 100%;
      margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-nav,
    .footer-links,
    .footer-contact {
      margin-top: 1.5rem;
    }
  }
  
  /* Tablets (768px - 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
    /* Header y navegación */
    .contact-phone,
    .cta-button {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 24px;
      background-color: var(--primary-color) !important;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    
    .main-nav {
      display: none;
    }
    
    /* Grids */
    .benefits-grid,
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }
  
  /* Desktops (992px y más) */
  @media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-nav {
      display: block;
    }
    
    /* Grids */
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .reasons-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
      grid-template-columns: repeat(5, 1fr);
    }
    
    /* Footer */
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 2rem;
    }
  }
  
  /* Touch Devices */
  @media (hover: none) {
    .btn, 
    a,
    .faq-question,
    .service-item {
      cursor: pointer;
      -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Aumentar área táctil */
    .nav-link,
    .footer-nav a,
    .footer-links a {
      padding: 0.5rem 0;
      display: inline-block;
    }
  }
  
  /* Print styles */
  @media print {
    .top-header,
    .main-header,
    .hero-section,
    .benefits-section,
    .contact-section,
    .faq-section {
      display: none;
    }
    
    body {
      font-size: 12pt;
      color: #000;
      background: #fff;
    }
    
    a {
      text-decoration: none;
      color: #000;
    }
    
    a[href^="http"]:after {
      content: " (" attr(href) ")";
    }
    
    .container {
      max-width: 100%;
      padding: 0;
      margin: 0;
    }
    
    @page {
      margin: 2cm;
    }
  }
  
  /* ==================
     Referencias 
     ================== */
  
  .references-section {
    padding: 80px 0;
    background-color: var(--bg-white);
  }
  
  .references-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .reference-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .reference-logo {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .reference-logo img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  
  .reference-item:hover .reference-logo img {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  .reference-info {
    width: 100%;
  }
  
  .reference-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
  }
  
  .reference-location {
    font-size: 14px;
    color: var(--text-medium);
  }
  
  @media (max-width: 991px) {
    .references-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .references-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ==================
     Testimonios
     ================== */
  
  .testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-light);
    position: relative;
  }
  
  .testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
  }
  
  .testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
    min-height: 300px;
  }
  
  .testimonial-item {
    flex: 0 0 100%;
    padding: 0 15px;
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .testimonial-item.active {
    display: block;
  }
  
  .testimonial-content {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
  }
  
  .quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
  }
  
  .testimonial-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
  }
  
  .testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
  }
  
  .testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
  }
  
  .testimonial-author p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
    font-style: normal;
  }
  
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .slider-nav:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .slider-nav.prev {
    left: 0;
  }
  
  .slider-nav.next {
    right: 0;
  }
  
  .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 62, 120, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .indicator.active {
    background-color: var(--primary-color);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .testimonials-slider {
      padding: 0 40px;
    }
    
    .testimonial-content {
      padding: 25px;
    }
    
    .slider-nav {
      width: 35px;
      height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .testimonials-slider {
      padding: 0 30px;
    }
    
    .slider-nav {
      width: 30px;
      height: 30px;
    }
    
    .testimonial-content p {
      font-size: 15px;
    }
    
    .testimonial-author h4 {
      font-size: 16px;
    }
    
    .testimonial-author p {
      font-size: 13px;
    }
  }
  
  /* ==================
     FAQ Acordeón
     ================== */
  
  .faq-section {
    padding: 90px 0;
    background-color: var(--bg-light);
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  
  .faq-header p {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--bg-white);
  }
  
  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-white);
    transition: background-color 0.3s ease;
    user-select: none;
  }
  
  .faq-question:hover,
  .faq-question:focus {
    background-color: rgba(0, 62, 120, 0.05);
    outline: none;
  }
  
  .faq-question h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
  }
  
  .faq-toggle i {
    transition: transform 0.3s ease;
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px;
    background-color: var(--bg-white);
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    overflow: hidden;
  }
  
  .faq-answer:not([hidden]) {
    padding: 0 20px 20px;
    animation: fadeDown 0.5s ease forwards;
  }
  
  .faq-item.active .faq-question {
    background-color: rgba(0, 62, 120, 0.05);
  }
  
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .faq-question {
      padding: 15px;
    }
    
    .faq-question h4 {
      font-size: 16px;
    }
    
    .faq-answer:not([hidden]) {
      padding: 0 15px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .faq-header h2 {
      font-size: 26px;
    }
    
    .faq-question h4 {
      font-size: 15px;
      max-width: 85%;
    }
  } 

/* --- FIN: responsive.css --- */

/* Estilos globales personalizados para Mohamed Child 
body {
    font-family: 'Open Sans', Arial, sans-serif;
}
     */

/* Grilla de referencias con 4 columnas (forzada) 
.references-grid.references-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}
@media (max-width: 991px) {
    .references-grid.references-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 576px) {
    .references-grid.references-grid-4 {
        grid-template-columns: 1fr !important;
    }
}*/

/* Fix para la alineación del icono de teléfono en la página de error */
.error-options .option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 62, 120, 0.08);
    color: var(--primary-color);
    /* Elimina cualquier borde o sombra extra */
    box-shadow: none;
    border: none;
}