/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 400px;
    align-content: center;
}

/* Variables de colores (inspiradas en Bizgest) */
:root {
    --primary-color: #0094FF;
    --secondary-color: #808080;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);*/
    background-image: url("img/banner_sge4.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 310px 0 240px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 148, 254, 0.5); /* negro con 50% transparencia */
    z-index: 1;
}

/* Asegura que el contenido esté por encima del overlay */
.hero > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cabecera sectores */
.hero2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url("img/carp_metalica2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero2-content {
    position: relative;
    z-index: 2;
}

.hero2-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero2-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero2-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Módulos Section */
.modules {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header p.large {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 1000px;
    margin: 0 auto;
}

.section-header li {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    list-style-type: none;
}

.section-header li.large {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 1100px;
    margin: 0 auto;
    list-style-type: none;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.module-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Beneficios Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    flex: 1;
    min-width: 220px;
    background: var(--gray-100);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin: 0 0.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.7s;
}
.benefit-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: var(--shadow-xl);
}
.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    transition: background 0.3s, color 0.3s;
}
.benefit-competitivo .benefit-icon { background: #f59e0b; color: #fff; }
.benefit-eficaz .benefit-icon { background: #ef4444; color: #fff; }
.benefit-seguro .benefit-icon { background: #10b981; color: #fff; }

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.benefit-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: center;
    margin: 0 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.7s;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: var(--gray-100);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.10);
    transition: background 0.3s, color 0.3s;
}
.feature-fiable .feature-icon { background: #10b981; color: #fff; }
.feature-flexible .feature-icon { background: #f59e0b; color: #fff; }

.feature-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.125rem;
}

/**/
/* Features Section */
.extension {
    padding: 80px 0;
    background: var(--gray-50);
}

.extension-grid {
    display: grid;
    gap: 3rem;
}

.extension-card{
    display: flex;
    gap: 2em;
}

.extension-card div:first-child img{
    max-width: 200px;
    max-height: 200px;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: var(--white);
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    min-height: unset;
    display: block;
    align-items: unset;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.contact-info, .contact-form {
    flex: unset;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-map {
    width: 100%;
    margin: 0 auto;
}

/* Formulario */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .trust-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card,
.feature-card,
.trust-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de hover mejorados */
.module-card:hover .module-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Focus states para accesibilidad */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
} 

.benefits-highlight {
    background: linear-gradient(120deg, #0094FF 0%, #808080 100%);
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 1;
}

/* Trayectoria / Madurez (KPIs) */
.maturity {
    text-align: center;
    color: #fff;
}
.maturity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.maturity-subtitle {
    font-size: 1.15rem;
    color: #eef4fb;
    max-width: 820px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    padding: 2rem 1.25rem;
}
.stat-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.05rem;
    color: #eaf2fb;
    line-height: 1.4;
}
.benefits-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}
.benefit-badge {
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    min-width: 260px;
    min-height: 260px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(30,58,138,0.25), 0 1.5px 8px 0 rgba(59,130,246,0.10);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 1rem 0.5rem;
    border: 4px solid rgba(255,255,255,0.18);
    animation: zoomIn 0.7s;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-sizing: border-box;
    max-width: 340px;
    text-align: center;
    overflow-wrap: break-word;
}
.benefit-badge:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 12px 40px 0 rgba(30,58,138,0.35), 0 2px 12px 0 rgba(59,130,246,0.15);
}
.benefit-badge-icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 16px #808080, 0 0 8px #0094FF;
}
.benefit-badge-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(30,58,138,0.18);
}
.benefit-badge-desc {
    color: #e0e7ef;
    font-size: 1.08rem;
    text-align: center;
    margin: 0 10px;
    text-shadow: 0 1px 4px rgba(30,58,138,0.10);
    line-height: 1.5;
    word-break: break-word;
}
.benefit-competitivo {
    box-shadow: 0 0 24px 0 #f59e0b55, 0 8px 32px 0 rgba(30,58,138,0.18);
    border-color: #f59e0b;
}
.benefit-eficaz {
    box-shadow: 0 0 24px 0 #80808055, 0 8px 32px 0 rgba(30,58,138,0.18);
    border-color: #ef4444;
}
.benefit-seguro {
    box-shadow: 0 0 24px 0 #10b98155, 0 8px 32px 0 rgba(30,58,138,0.18);
    border-color: #10b981;
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 900px) {
    .benefits-badges {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .benefit-badge {
        min-width: 200px;
        min-height: 200px;
        max-width: 95vw;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .benefit-badge-title {
        font-size: 1.2rem;
    }
    .benefit-badge-desc {
        font-size: 0.98rem;
    }
} 

.benefits-badges-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 0;
}
.benefit-badge-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 60%, rgba(59,130,246,0.10) 100%);
    border-radius: 2rem;
    min-width: 0;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 32px 0 rgba(30,58,138,0.18), 0 1.5px 8px 0 rgba(59,130,246,0.10);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0;
    border: 3px solid rgba(255,255,255,0.18);
    animation: zoomIn 0.7s;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: break-word;
}
.benefit-badge-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 12px 40px 0 rgba(30,58,138,0.25), 0 2px 12px 0 rgba(59,130,246,0.15);
}
.benefit-badge-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 16px #808080, 0 0 8px #0094FF;
}
.benefit-badge-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(30,58,138,0.18);
}
.benefit-badge-desc {
    color: #e0e7ef;
    font-size: 1.08rem;
    text-align: center;
    margin: 0 10px;
    text-shadow: 0 1px 4px rgba(30,58,138,0.10);
    line-height: 1.5;
    word-break: break-word;
}
.benefit-competitivo {
    box-shadow: 0 0 24px 0 #f59e0b55, 0 8px 32px 0 rgba(30,58,138,0.10);
    border-color: #f59e0b;
}
.benefit-eficaz {
    box-shadow: 0 0 24px 0 #80808055, 0 8px 32px 0 rgba(30,58,138,0.10);
    border-color: #ef4444;
}
.benefit-seguro {
    box-shadow: 0 0 24px 0 #10b98155, 0 8px 32px 0 rgba(30,58,138,0.10);
    border-color: #10b981;
}
@media (max-width: 1100px) {
    .benefits-badges-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .benefit-badge-card {
        width: 90vw;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 700px) {
    .benefits-badges-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .benefit-badge-card {
        width: 98vw;
        max-width: 98vw;
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
} 

/* Modal Solicitar Demo */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 41, 59, 0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-window {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(30,58,138,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 540px;
  width: 98vw;
  position: relative;
  animation: zoomIn 0.3s;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0094FF;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.modal-close:hover {
  color: #ef4444;
}
.modal-window h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.modal-form .form-group {
  margin-bottom: 1.1rem;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
  background: var(--gray-50);
}
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.row-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.row-form .form-group {
  flex: 1 1 0;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .modal-window {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .modal-window h2 {
    font-size: 1.3rem;
  }
} 

/* Soporte */
.support-section {
    background: var(--gray-50);
    padding: 100px 0 80px 0;
    min-height: 70vh;
}
.support-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9rem;
    flex-wrap: wrap;
}
.support-illustration {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-monitor {
    width: 300px;
    height: 220px;
    background: #e0f2fe;
    border-radius: 24px 24px 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(30,58,138,0.10);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-monitor::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 32px;
    background: #cbd5e1;
    border-radius: 0 0 18px 18px;
}
.support-headset {
    font-size: 6rem;
    color: #0094FF;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    padding: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(30,58,138,0.10);
}
.support-content {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 600px;
}
.support-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}
.support-desc {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.support-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}
.support-cards {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.support-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(30,58,138,0.10);
    padding: 2.2rem 2rem 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    min-width: 140px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}
.support-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(30,58,138,0.18);
    background: var(--gray-100);
    border-color: var(--primary-color);
}
.support-card-icon {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #0094FF ;
    text-shadow: 0 2px 8px rgba(245,158,11,0.10);
}
.support-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}
@media (max-width: 900px) {
    .support-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .support-illustration {
        margin-bottom: 1.5rem;
    }
    .support-content {
        max-width: 98vw;
    }
    .support-cards {
        gap: 1rem;
    }
}
@media (max-width: 500px) {
    .support-monitor {
        width: 98vw;
        min-width: 0;
        height: 160px;
    }
    .support-headset {
        font-size: 3.2rem;
        padding: 0.7rem;
    }
    .support-card {
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
        min-width: 90px;
    }
} 

.support-animated-icon {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-animated-icon .pulse {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59,130,246,0.18);
    animation: pulseAnim 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
    z-index: 1;
}
.support-animated-icon .icon {
    position: relative;
    z-index: 2;
    width: 230px;
    height: 230px;
    background: linear-gradient(135deg, #0094FF 60%, #808080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px 0 rgba(30,58,138,0.10);
}
.support-animated-icon .icon i {
    color: #fff;
    font-size: 4rem;
}
@keyframes pulseAnim {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
} 

/* Tarjetas de sectores visuales */
.sector-card {
    background: linear-gradient(135deg, #f3f4f6 60%, #e0e7ef 100%);
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(30,58,138,0.08);
    border-left: 7px solid var(--primary-color);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    animation: fadeInUp 0.7s;
    margin-bottom: 0.5rem;
    align-items: center;
}
.sector-card:hover {
    box-shadow: 0 12px 40px 0 rgba(30,58,138,0.18);
    transform: translateY(-6px) scale(1.03);
    border-left: 7px solid var(--accent-color);
    background: linear-gradient(135deg, #e0e7ef 60%, #f3f4f6 100%);
}
.sector-icon {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.sector-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0;
}
/* Colores/acento por sector (puedes personalizar más) */
.sector-medida { border-left-color: #f59e0b; }
.sector-seriado { border-left-color: #0094FF; }
.sector-carpinteria { border-left-color: #10b981; }
.sector-ingenieria { border-left-color: #6366f1; }
.sector-caldereria { border-left-color: #ef4444; }
.sector-mantenimiento { border-left-color: #f59e0b; }
.sector-comercial { border-left-color: #0094FF; }
.sector-taller { border-left-color: #10b981; }
.sector-transporte { border-left-color: #ef4444; }
.sector-card:hover.sector-medida { border-left-color: #f59e0b; }
.sector-card:hover.sector-seriado { border-left-color: #0094FF; }
.sector-card:hover.sector-carpinteria { border-left-color: #10b981; }
.sector-card:hover.sector-ingenieria { border-left-color: #6366f1; }
.sector-card:hover.sector-caldereria { border-left-color: #ef4444; }
.sector-card:hover.sector-mantenimiento { border-left-color: #f59e0b; }
.sector-card:hover.sector-comercial { border-left-color: #0094FF; }
.sector-card:hover.sector-taller { border-left-color: #10b981; }
.sector-card:hover.sector-transporte { border-left-color: #ef4444; }
@media (max-width: 700px) {
    .sector-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .sector-icon {
        font-size: 2rem;
    }
} 

.required {
    color: #ef4444;
    font-size: 1.1em;
    margin-left: 2px;
    font-weight: bold;
    vertical-align: middle;
} 

.carpinteria{
    padding: 80px 0;
}

.carpinteria-body p{
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0 auto;
    text-align: center;
}

/* Partners - Secciones */

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Tiers */
.partners-tiers {
    padding: 80px 0;
    background: #f9fafb;
}
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
}
.tier-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform .2s ease;
}
.tier-card:hover {
    transform: translateY(-6px);
}
.tier-card h3 {
    margin: 15px 0 10px;
    font-size: 1.3rem;
}
.tier-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 0.9rem;
}
.tier-features li {
    margin-bottom: 8px;
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}
.badge.platinum { background: linear-gradient(90deg,#6b7280,#1f2937); }
.badge.gold { background: linear-gradient(90deg,#fbbf24,#f59e0b); }
.badge.silver { background: linear-gradient(90deg,#9ca3af,#6b7280); }

/* Beneficios */
.partners-benefits {
    padding: 80px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
}
.benefit {
    text-align: center;
    padding: 20px;
}
.benefit i {
    font-size: 2rem;
    color: var(--primary-color, #007BFF);
    margin-bottom: 15px;
}
.benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}


/* CTA */
.partners-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 12px;
}
.partners-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.partners-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

ul.tier-features {
    list-style: none; /* quitamos viñetas normales */
    padding-left: 0;
}
ul.tier-features li {
    position: relative;
    padding-left: 28px; /* espacio para el icono */
    margin-bottom: 10px;
}
ul.tier-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 12l5 5L20 7' fill='none' stroke='%2300b894' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}
/* Formulario Partners */
.partners-form {
  padding: 80px 0;
  background: #f9fafb;
  display: flex;
  justify-content: center;
}

.partners-form div:first-child img{
    width: 100%;
    max-width: 660px;
    border-radius: 1em;
}

.form-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

button[type="submit"] {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  font-size: 1rem;
}

/* ===== Página "Por qué SGE4" (ventajas por zonas) ===== */

/* Hero claro, con fondo azul suave (no es la home) */
.page-hero {
    padding: 130px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, #e6f3ff 0%, #f4faff 100%);
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.page-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 820px;
    margin: 0 auto;
}
.page-hero .hero-buttons {
    margin-top: 2rem;
}

/* Ilustración conceptual de cada zona (icono, sin fondo) */
.zone-illustration {
    text-align: center;
}
.zone-illustration i {
    font-size: 8.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.showcase {
    padding: 70px 0;
}
.showcase.alt {
    background: var(--gray-50);
}

/* Fila: ilustración a la izquierda, texto a la derecha */
.showcase-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}
.showcase-row + .showcase-row {
    margin-top: 4.5rem;
}

.showcase-media img,
.showcase-media video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.showcase-text h3 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}
.showcase-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.showcase-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.showcase-text li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.showcase-text li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-color);
}

/* Rejilla de vídeos cortos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.video-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.video-card .video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
}
.video-card .video-frame img,
.video-card .video-frame video,
.video-card .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
.video-card .video-body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.video-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.video-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
