@charset "utf-8";
/* CSS Document */
/*BOTONERA Y ENLACES*/
.navbar2 ul li a {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: normal;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    text-align: center;
}
.navbar2 ul li a:hover {
    color: #FFFFFF !important;
    text-decoration: none;
    background: #003A74;
}
.active {
    color: #ffffff;
    background-color: #003A74;
}
a {
    color: #59B600;
    text-decoration: underline;
}
a:hover {
    color: #ffffff;
    text-decoration: none;
}
a.pie {
    color: #59B600;
    font-weight: 400;
    text-decoration: underline;
}
a.pie:hover {
    color: #003A74;
    text-decoration: none;
}
a.pie2 {
    color: #59B600;
    font-weight: 400;
    text-decoration: underline;
}
a.pie2:hover {
    color: #FFFFFF;
    text-decoration: none;
}
/*FUENTES*/
.h1 {
    color: #003A74;
    font-size: clamp(22px, 4vw, 45px); /* Mínimo 22px, máximo 45px */
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
}
.fuente25blanca {
    color: #FFFFFF;
    font-style: normal;
    font-size: 25px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}
.fuente20blanca {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 20px;
    word-spacing: 2px;
    font-family: 'DM Sans', sans-serif;
}
.fuente20negra {
    color: #000000;
    font-size: 20px;
    font-weight: normal;
    font-family: 'DM Sans', sans-serif;
}
.fuente25verde {
    color: #59B600;
    font-size: 22px;
    font-weight: normal;
    font-family: 'DM Sans', sans-serif;
}
/*PADDINGS*/
.paddings {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding20abajo {
    padding-bottom: 20px;
}
.colchon {
    margin-left: 10px;
    margin-right: 10px;
}
/*ALINEACION*/
.centrado {
    text-align: center;
}
.derecha {
    text-align: right;
}
.sangria {
    margin-left: 20px;
    margin-right: 20px;
}
/*CENTRAR DIV DENTRO DE UN DIV*/
.flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*FONDOS*/
.fondo-gris {
    background-color: #003A74;
}
.fondo-verde {
    background-color: #59B600;
}
.fondo-negro {
    background-color: #000000;
}
.fondo-gris-claro {
    background-color: #EEF0F3;
}
.sombra {
    position: relative;
    -webkit-box-shadow: 0px 4px 10px #636363;
    box-shadow: 0px 4px 10px #363636;
    z-index: 90;
}
/*PARA EL BOTON FLOTANTE DE WHATSAPP*/
.float {
    position: fixed;
    bottom: 120px;
    right: 5px;
    z-index: 100;
}
.bordesuperior {
    border-top: 20px solid #000033;
}
.shake {
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
}
.element {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    background: red;
}
@keyframes shake-animation {
    0% {
        transform: translate(0, 0)
    }
    1.78571% {
        transform: translate(5px, 0)
    }
    3.57143% {
        transform: translate(0, 0)
    }
    5.35714% {
        transform: translate(5px, 0)
    }
    7.14286% {
        transform: translate(0, 0)
    }
    8.92857% {
        transform: translate(5px, 0)
    }
    10.71429% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}
/*BLINKER*/
.blink_me {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }
        
        .image-section {
            position: relative;
            overflow: hidden;
        }
        
        .contact-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .contact-image:hover {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(40, 167, 69, 0.8), rgba(23, 162, 184, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .image-section:hover .image-overlay {
            opacity: 1;
        }
        
        .overlay-text {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .image-section:hover .overlay-text {
            transform: translateY(0);
        }
        
        .contact-info {
            padding: 3rem 2.5rem;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #28a745, #17a2b8);
            border-radius: 2px;
        }
        
        .contact-item {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-item:hover {
            background: #e9ecef;
            border-left-color: #28a745;
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #28a745, #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: rotate(360deg);
        }
        
        .contact-link {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        
        .contact-link:hover {
            color: #28a745;
            text-decoration: none;
        }
        
        .phone-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: #28a745;
        }
        
        .email-address {
            word-break: break-all;
            font-size: 1rem;
        }
        
        .service-badge {
            background: linear-gradient(45deg, #28a745, #17a2b8);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
        }
        
        .service-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
        }
        
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @media (max-width: 768px) {
            .contact-info {
                padding: 2rem 1.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-image {
                height: 250px;
            }
            
            .contact-item {
                padding: 1rem;
            }
            
            .phone-number {
                font-size: 1.1rem;
            }
        }
        
        .copy-success {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #59B600;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            z-index: 1000;
            transform: translateX(300px);
            transition: transform 0.3s ease;
        }
        
        .copy-success.show {
            transform: translateX(0);
        }

        .fuente25verde {
            font-size: 1.4rem;
            color: #59B600;
            font-weight: bold;
        }

        .fuente20negra {
            font-size: 1.2rem;
            color: #333;
        }

        .fondo-gris-claro {
            background-color: #f8f9fa;
        }

        /* Mejoras simples */
        .card-simple {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            border: none;
            height: 100%;
        }

        .card-simple img {
            border-radius: 0;
        }

        .pie {
            color: #28a745;
            text-decoration: none;
        }

        .pie:hover {
            color: #1e7e34;
            text-decoration: none;
        }

        /* Bullets mejorados */
        .lista-mejorada li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
        }

        .lista-mejorada li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .ventajas-lista li:before {
            content: "★";
            color: #59B600;
        }