﻿/**

 * AROL SECURITY - PROPUESTA 1

 * Estilo: Corporativo Profesional

 * Colores: Azul Oscuro (#0A2647) + Dorado (#D4AF37)

 */



:root {

    --primary-color: #1e3a8a;

    --secondary-color: #2563eb;

    --accent-color: #D4AF37;

    --accent-light: #F4E4C1;

    --text-dark: #1a1a1a;

    --text-light: #6c757d;

    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);

    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);

    --shadow-sm: 0 2px 10px rgba(30, 58, 138, 0.1);

    --shadow-md: 0 5px 20px rgba(30, 58, 138, 0.15);

    --shadow-lg: 0 10px 40px rgba(30, 58, 138, 0.2);

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



/* Prevenir overflow horizontal en todos los elementos */

*,

*::before,

*::after {

    max-width: 100%;

}



html {

    scroll-behavior: smooth;

    scroll-padding-top: 150px;

    overflow-x: hidden;

}



body {

    font-family: 'Montserrat', sans-serif;

    color: var(--text-dark);

    line-height: 1.6;

    overflow-x: hidden;

    width: 100%;

    max-width: 100vw;

}



/* ========== NAVBAR ========== */

.navbar {

    padding: 1rem 0;

    transition: all 0.3s ease;

    background: transparent;

    z-index: 1000;

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

}



.navbar.scrolled {

    background: var(--gradient-primary) !important;

    box-shadow: var(--shadow-md);

    padding: 0.5rem 0;

}



.navbar-nav {

    position: relative;

    z-index: 1001;

}



.logo-img {

    height: 90px;

    width: 90px;

    margin-right: 15px;

    transition: all 0.3s ease;

    object-fit: contain;

    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));

}



.navbar-brand {

    display: flex;

    align-items: center;

}



.navbar-brand:hover .logo-img {

    transform: scale(1.08);

    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.6));

}



.brand-text {

    font-weight: 700;

    font-size: 1.3rem;

    color: var(--white);

    letter-spacing: 1px;

}



.nav-link {

    color: var(--white) !important;

    font-weight: 500;

    margin: 0 0.5rem;

    padding: 0.5rem 1rem !important;

    transition: all 0.3s ease;

    position: relative;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 0;

    height: 2px;

    background: var(--accent-color);

    transition: all 0.3s ease;

    transform: translateX(-50%);

}



.nav-link:hover::after {

    width: 80%;

}



.btn-cotizar {

    background: var(--accent-color) !important;

    color: var(--primary-color) !important;

    border-radius: 50px;

    padding: 0.5rem 1.5rem !important;

    font-weight: 600;

}



.btn-cotizar:hover {

    background: var(--accent-light) !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);

}



/* Fix para evitar superposicion del menu */

.navbar-collapse {

    background: var(--gradient-primary);

    border-radius: 10px;

    padding: 1rem;

    margin-top: 1rem;

}



@media (max-width: 991px) {

    .navbar-collapse {

        box-shadow: var(--shadow-md);

    }



    .nav-link {

        padding: 0.75rem 1rem !important;

        text-align: center;

    }

}



.navbar.scrolled .navbar-collapse {

    background: transparent;

    padding: 0;

    margin-top: 0;

}



/* Estilos para el boton hamburguesa a la izquierda */

.navbar-toggler {

    border: 2px solid var(--accent-color);

    padding: 0.5rem 0.75rem;

    margin-right: 1rem;

}



.navbar-toggler:focus {

    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.5);

}



.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}



@media (max-width: 991px) {

    .navbar-brand {

        margin: 0;

        flex: 1;

    }



    .logo-img {

        height: 50px;

        width: 50px;

    }



    .brand-text {

        font-size: 1rem;

    }



    .navbar-toggler {

        order: -1;

        margin-right: 0.5rem;

    }



    .navbar .container {

        display: flex;

        align-items: center;

    }

}



@media (min-width: 992px) {

    .navbar-collapse {

        background: transparent !important;

        padding: 0 !important;

        margin-top: 0 !important;

    }



    .navbar-toggler {

        display: none;

    }

}



/* ========== HERO SECTION ========== */

.hero-section {

    background: var(--gradient-primary);

    position: relative;

    overflow: hidden;

    /* Imagen de fondo del auto */

    background-image:

        linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%),

        url('../../assets/auto.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    /* Overlay oscuro reducido para ver mas la imagen */

    background: linear-gradient(135deg,

            rgba(10, 38, 71, 0.25) 0%,

            rgba(30, 58, 138, 0.2) 50%,

            rgba(59, 130, 246, 0.15) 100%);

    /* Patron decorativo sutil */

    background-image:

        linear-gradient(135deg,

            rgba(10, 38, 71, 0.25) 0%,

            rgba(30, 58, 138, 0.2) 50%,

            rgba(59, 130, 246, 0.15) 100%),

        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23144272" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');

    background-size: cover, cover;

    background-position: center, bottom;

    opacity: 1;

}



.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 100px;

    padding-bottom: 80px;

    text-align: center;

}



.hero-title {

    font-size: 4rem;

    font-weight: 800;

    color: var(--white);

    margin-bottom: 1.5rem;

    line-height: 1.2;

    animation: fadeInUp 1s ease;

    white-space: normal;

    /* Sombra para mejor legibilidad sobre la imagen */

    text-shadow:

        0 2px 10px rgba(0, 0, 0, 0.5),

        0 4px 20px rgba(10, 38, 71, 0.8);

}



.hero-title .highlight {

    color: var(--accent-color);

    display: block !important;

    width: 100%;

    margin-top: 0.5rem;

    /* Sombra dorada para el texto destacado */

    text-shadow:

        0 2px 10px rgba(0, 0, 0, 0.5),

        0 4px 20px rgba(212, 175, 55, 0.6);

}



.hero-subtitle {

    font-size: 1.3rem;

    color: rgba(255, 255, 255, 0.95);

    margin-bottom: 2rem;

    animation: fadeInUp 1s ease 0.2s backwards;

    /* Sombra para mejor legibilidad */

    text-shadow:

        0 2px 8px rgba(0, 0, 0, 0.5),

        0 3px 15px rgba(10, 38, 71, 0.7);

}



.hero-buttons {

    animation: fadeInUp 1s ease 0.4s backwards;

    display: flex;

    gap: 1rem;

    justify-content: center;

    flex-wrap: wrap;

}



.btn-primary {

    background: var(--accent-color);

    border: none;

    color: var(--primary-color);

    font-weight: 600;

    padding: 0.85rem 2rem;

    border-radius: 50px;

    transition: all 0.3s ease;

}



.btn-primary:hover {

    background: var(--accent-light);

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);

}



.btn-outline-light {

    border: 2px solid var(--white);

    color: var(--white);

    font-weight: 600;

    padding: 0.85rem 2rem;

    border-radius: 50px;

    transition: all 0.3s ease;

}



.btn-outline-light:hover {

    background: var(--white);

    color: var(--primary-color);

    transform: translateY(-3px);

}



.hero-stats {

    display: flex;

    gap: 3rem;

    animation: fadeInUp 1s ease 0.6s backwards;

    margin-top: 3rem !important;

    padding-bottom: 2rem;

    width: 100%;

    max-width: 100%;

    justify-content: center;

    flex-wrap: wrap;

}



.stat-item {

    text-align: center;

}



.stat-number {

    font-size: 3.5rem;

    font-weight: 800;

    color: var(--accent-color);

    margin-bottom: 0.5rem;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(212, 175, 55, 0.6);

}



.stat-label {

    color: rgba(255, 255, 255, 0.95);

    font-size: 1rem;

    font-weight: 600;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

}



.floating-card {

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 20px;

    padding: 2rem;

    text-align: center;

    animation: float 3s ease-in-out infinite;

}



.floating-card i {

    font-size: 4rem;

    color: var(--accent-color);

    margin-bottom: 1rem;

}



.floating-card h4 {

    color: var(--white);

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.floating-card p {

    color: rgba(255, 255, 255, 0.8);

    margin: 0;

}



.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

}



.scroll-indicator a {

    color: var(--accent-color);

    font-size: 2rem;

    animation: bounce 2s infinite;

}



/* ========== BADGE ISO 9001 EN NAVBAR ========== */

.iso-badge-navbar {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);

    padding: 0.5rem 1rem;

    border-radius: 50px;

    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);

    border: 2px solid var(--primary-color);

    margin-left: 1rem;

    animation: pulse 2s ease-in-out infinite;

    transition: all 0.3s ease;

}



.iso-badge-navbar:hover {

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);

}



.iso-badge-navbar i {

    font-size: 1.5rem;

    color: var(--primary-color);

}



.iso-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}



.iso-text strong {

    font-size: 0.75rem;

    font-weight: 800;

    color: var(--primary-color);

    letter-spacing: 0.5px;

}



.iso-text span {

    font-size: 0.6rem;

    font-weight: 600;

    color: var(--primary-color);

}



/* AnimaciÃ³n de pulso para el badge */

@keyframes pulse {



    0%,

    100% {

        transform: scale(1);

        box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);

    }



    50% {

        transform: scale(1.03);

        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);

    }

}



/* ========== NOSOTROS SECTION ========== */

.nosotros-section {

    background: var(--white);

    padding: 100px 0;

}



.about-image-wrapper {

    position: relative;

}



.about-image-wrapper img {

    border-radius: 20px;

}



.experience-badge {

    position: absolute;

    bottom: 30px;

    right: 30px;

    background: var(--gradient-accent);

    padding: 2rem;

    border-radius: 15px;

    text-align: center;

    box-shadow: var(--shadow-lg);

}



.experience-badge h3 {

    font-size: 3rem;

    font-weight: 800;

    color: var(--primary-color);

    margin: 0;

}



.experience-badge p {

    color: var(--primary-color);

    font-weight: 600;

    margin: 0;

    line-height: 1.3;

}



.section-label {

    display: inline-block;

    color: var(--accent-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 1rem;

    font-size: 0.9rem;

}



.section-title {

    font-size: 2.5rem;

    font-weight: 800;

    color: var(--primary-color);

    margin-bottom: 1.5rem;

    line-height: 1.2;

}



.section-description {

    font-size: 1.1rem;

    color: var(--text-light);

    margin-bottom: 2rem;

}



.vision-mission {

    margin: 2rem 0;

}



.vm-item {

    display: flex;

    gap: 1.5rem;

    margin-bottom: 2rem;

    padding: 1.5rem;

    background: #f8f9fa;

    border-radius: 15px;

    transition: all 0.3s ease;

}



.vm-item:hover {

    transform: translateX(10px);

    box-shadow: var(--shadow-md);

}



.vm-icon {

    width: 60px;

    height: 60px;

    background: var(--gradient-accent);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.vm-icon i {

    font-size: 1.8rem;

    color: var(--primary-color);

}



.vm-content h4 {

    color: var(--primary-color);

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.vm-content p {

    color: var(--text-light);

    margin: 0;

}



.values-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1rem;

    margin-top: 2rem;

}



.value-item {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    color: var(--primary-color);

    font-weight: 600;

}



.value-item i {

    color: var(--accent-color);

}



/* ========== SERVICIOS SECTION ========== */

.servicios-section {

    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);

    padding: 100px 0;

}



.service-card {

    background: var(--white);

    border-radius: 20px;

    padding: 2rem;

    height: 100%;

    transition: all 0.3s ease;

    border: 2px solid transparent;

    box-shadow: var(--shadow-sm);

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: var(--accent-color);

}



.service-icon {

    width: 80px;

    height: 80px;

    background: var(--gradient-accent);

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

    transition: all 0.3s ease;

}



.service-card:hover .service-icon {

    transform: scale(1.1) rotate(5deg);

}



.service-icon i {

    font-size: 2rem;

    color: var(--primary-color);

}



.service-title {

    font-size: 1.3rem;

    font-weight: 700;

    color: var(--primary-color);

    margin-bottom: 1rem;

}



.service-description {

    color: var(--text-light);

    margin-bottom: 1.5rem;

}



.service-features {

    list-style: none;

    padding: 0;

    margin-bottom: 1.5rem;

}



.service-features li {

    color: var(--text-light);

    margin-bottom: 0.5rem;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.service-features i {

    color: var(--accent-color);

    font-size: 0.8rem;

}



.service-link {

    color: var(--primary-color);

    font-weight: 600;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    transition: all 0.3s ease;

}



.service-link:hover {

    color: var(--accent-color);

    gap: 1rem;

}



/* ========== PROYECTOS SECTION ========== */

.proyectos-section {

    background: var(--white);

    padding: 100px 0;

}



.proyecto-card {

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    height: 400px;

    cursor: pointer;

}



.proyecto-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s ease;

}



.proyecto-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    background: linear-gradient(to top, rgba(10, 38, 71, 0.95), transparent);

    padding: 2rem;

    transform: translateY(100%);

    transition: all 0.5s ease;

}



.proyecto-card:hover .proyecto-img {

    transform: scale(1.1);

}



.proyecto-card:hover .proyecto-overlay {

    transform: translateY(0);

}



.proyecto-overlay h3 {

    color: var(--white);

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.proyecto-overlay p {

    color: rgba(255, 255, 255, 0.9);

    margin: 0;

}



/* ========== CONTACTO SECTION ========== */

.contacto-section {

    background: var(--gradient-primary);

    padding: 100px 0;

}



.contacto-info {

    padding: 2rem 0;

}



.info-item {

    display: flex;

    gap: 1.5rem;

    margin-bottom: 2rem;

    align-items: flex-start;

}



.info-icon {

    width: 50px;

    height: 50px;

    background: var(--accent-color);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.info-icon i {

    color: var(--primary-color);

    font-size: 1.3rem;

}



.info-content h5 {

    color: var(--white);

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.info-content p {

    color: rgba(255, 255, 255, 0.8);

    margin: 0;

}



.contacto-form-wrapper {

    background: var(--white);

    padding: 3rem;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}



.form-control,

.form-select {

    border: 2px solid #e9ecef;

    border-radius: 10px;

    padding: 0.8rem 1rem;

    transition: all 0.3s ease;

}



.form-control:focus,

.form-select:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);

}



/* ========== COTIZACION SECTION ========== */

.cotizacion-section {

    background: #f8f9fa;

    padding: 100px 0;

}



.cotizacion-form-wrapper {

    background: var(--white);

    padding: 3rem;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}



.form-label {

    font-weight: 600;

    color: var(--primary-color);

    margin-bottom: 0.5rem;

}



.form-check-input:checked {

    background-color: var(--accent-color);

    border-color: var(--accent-color);

}



/* ========== FOOTER ========== */

.footer {

    background: var(--primary-color);

}



.footer-links {

    list-style: none;

    padding: 0;

}



.footer-links li {

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.8);

}



.footer-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: all 0.3s ease;

}



.footer-links a:hover {

    color: var(--accent-color);

    padding-left: 5px;

}



.footer-links i {

    color: var(--accent-color);

}



.social-links a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    color: var(--white);

    margin-right: 0.5rem;

    transition: all 0.3s ease;

}



.social-links a:hover {

    background: var(--accent-color);

    color: var(--primary-color);

    transform: translateY(-3px);

}



/* ========== ANIMATIONS ========== */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes float {



    0%,

    100% {

        transform: translateY(0);

    }



    50% {

        transform: translateY(-20px);

    }

}



@keyframes bounce {



    0%,

    20%,

    50%,

    80%,

    100% {

        transform: translateY(0);

    }



    40% {

        transform: translateY(-10px);

    }



    60% {

        transform: translateY(-5px);

    }

}



/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {

    .hero-title {

        font-size: 2.5rem;

    }



    .hero-stats {

        flex-direction: column;

        gap: 1.5rem;

        margin-top: 2rem !important;

    }



    .stat-number {

        font-size: 2.5rem;

    }



    .section-title {

        font-size: 2rem;

    }



    .values-list {

        grid-template-columns: 1fr;

    }



    .hero-content {

        padding-top: 120px;

        padding-bottom: 40px;

        max-width: 100%;

        overflow-x: hidden;

    }



    .floating-card {

        margin-top: 2rem;

    }



    /* Evitar overflow horizontal */

    .container {

        max-width: 100%;

        overflow-x: hidden;

    }



    .row {

        margin-left: 0;

        margin-right: 0;

    }

}



@media (max-width: 768px) {

    .hero-title {

        font-size: 2rem;

        margin-bottom: 1rem;

    }



    .hero-subtitle {

        font-size: 1rem;

        margin-bottom: 1.5rem;

    }



    .hero-buttons {

        display: flex;

        flex-direction: column;

        gap: 1rem;

    }



    .hero-buttons .btn {

        width: 100%;

        margin: 0 !important;

    }



    .stat-number {

        font-size: 2rem;

    }



    .stat-label {

        font-size: 0.9rem;

    }



    .contacto-form-wrapper,

    .cotizacion-form-wrapper {

        padding: 1.5rem;

    }



    /* Ajustar imagen de fondo en moviles */

    .hero-section {

        background-attachment: scroll;

        /* Centrar el emblema del auto en mÃ³vil */

        background-position: center 40%;

        background-size: cover;

    }



    .service-card {

        margin-bottom: 1rem;

    }



    .proyecto-card {

        height: 300px;

    }



    .nosotros-section,

    .servicios-section,

    .proyectos-section,

    .contacto-section,

    .cotizacion-section {

        padding: 60px 0 !important;

        overflow-x: hidden;

    }



    /* Asegurar que todos los elementos respeten el ancho de pantalla */

    section {

        max-width: 100vw;

        overflow-x: hidden;

    }



    .hero-stats {

        gap: 1rem;

        padding: 0 1rem;

    }



    .hero-buttons {

        padding: 0 1rem;

    }



    /* Ajustar badge ISO en navbar para mÃ³viles */

    .iso-badge-navbar {

        margin-left: 0.5rem;

        padding: 0.4rem 0.8rem;

        gap: 0.4rem;

    }



    .iso-badge-navbar i {

        font-size: 1.2rem;

    }



    .iso-text strong {

        font-size: 0.65rem;

    }



    .iso-text span {

        font-size: 0.5rem;

    }

}



/* Ajuste adicional para pantallas muy pequeÃ±as (celulares verticales) */

@media (max-width: 480px) {

    .hero-section {

        /* Ajuste mÃ¡s preciso para celulares pequeÃ±os */

        background-position: center 35%;

    }



    .hero-title {

        font-size: 1.75rem;

    }



    .stat-number {

        font-size: 1.75rem;

    }

}



/* Ajuste para pantallas de 412px hacia abajo - Badge ISO mÃ¡s pequeÃ±o */

@media (max-width: 412px) {



    /* Badge ISO ultra compacto */

    .iso-badge-navbar {

        padding: 0.3rem 0.5rem;

        gap: 0.3rem;

        margin-left: 0.3rem;

        border: 1.5px solid var(--primary-color);

    }



    .iso-badge-navbar i {

        font-size: 0.9rem;

    }



    .iso-text strong {

        font-size: 0.5rem;

        letter-spacing: 0.2px;

    }



    /* Ocultar "Certificado" en pantallas muy pequeÃ±as */

    .iso-text span {

        display: none;

    }



    /* Reducir logo y texto de marca */

    .logo-img {

        height: 45px;

        width: 45px;

    }



    .brand-text {

        font-size: 0.9rem;

    }

}


/* ========== CLIENTES SECTION ========== */
.clientes-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.cliente-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    height: 280px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
}

.cliente-logo-wrapper:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cliente-logo {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cliente-logo-wrapper:hover .cliente-logo {
    transform: scale(1.15);
}

/* Responsive para clientes */
@media (max-width: 768px) {
    .cliente-logo-wrapper {
        height: 200px;
        padding: 2rem;
    }
    
    .cliente-logo {
        max-height: 120px;
    }
}


/* ========== LIGHTBOX PARA LOGOS ========== */
#logoLightbox .modal-dialog {
    max-width: 800px;
}

#logoLightbox .modal-content {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
}

#logoLightbox img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



.cliente-logo:hover {
    filter: brightness(1.1);
}


/* Cursor pointer para imágenes de proyectos */
.proyecto-img {
    cursor: pointer !important;
}

/* Indicador visual de que la imagen es clicable */
.proyecto-card::after {
    content: '\f002'; /* Icono de lupa de Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.proyecto-card:hover::after {
    color: rgba(255, 255, 255, 0.9);
    font-size: 4rem;
}

/* Mejorar el overlay para indicar que es clicable */
.proyecto-card:hover .proyecto-overlay {
    background: linear-gradient(to top, rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.3));
}

/* ========== AJUSTES ADICIONALES DE RESPONSIVIDAD ========== */
@media (max-width: 992px) {
    .experience-badge {
        padding: 1.2rem;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
        min-width: 120px;
    }
    .experience-badge h3 {
        font-size: 2rem;
    }
    .experience-badge p {
        font-size: 0.9rem;
    }
}