@charset "utf-8";
/* CSS Document */

body {
    background-color: white;
}

.navbar {
    background-color: white !important;
    border-bottom: 1px solid #dee2e6;
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 140px;
    width: auto;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.phone-item {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone-item:hover {
    color: #007bff;
    text-decoration: none;
}

.phone-separator {
    color: #666;
    font-weight: normal;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link.active {
    color: #007bff !important;
    font-weight: 600;
}

.dropdown-menu {
    background-color: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: #333;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Navbar visible en desktop siempre */
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

/* Hamburguesa solo en tablet y móviles */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        width: 100%;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .navbar-brand img {
        height: 140px;
    }
}

.hero-section {
    text-align: center;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

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

.main-content {
    padding: 3rem 0;
}

.title-section {
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.2rem;
    color: #03245A;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.social-section {
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    margin-bottom: 30px;
}

.intro-banner {
    background-color: #F1F3F5;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.fuentegris {
  color: #333333;
  font-size: 1.2rem;
line-height: 1.6;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #495057;
    text-align: center;
    margin: 0;
}

.highlight {
    color: #007bff;
    font-weight: 600;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-grid {
    margin-bottom: 4rem;
}

.service-row {
    margin-bottom: 2rem;
}

/* Service Card Styles */
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.service-header {
    margin: 15px 0 10px 0;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-header a {
    text-decoration: underline;
    color: #007bff;
}

.service-header a:hover {
    color: #333;
}

.service-content {
    flex-grow: 1;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 1.2rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.mission-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.mission-content {
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-highlights h3 {
    color: #03245A;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-highlights h4 {
    color: #03245A;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 1rem 0;
    }
    
    .services-section {
        padding: 2rem 0;
    }
}

/* Footer styles */
.footer-section {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 3rem 0;
    color: #333;
}

.footer-brand h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #555;
}

.footer-contact a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #0056b3;
    text-decoration: none;
}

.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-social h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.footer-nav h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a {
    color: #555;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    color: #007bff;
    text-decoration: none;
}

.footer-services {
    margin-top: 2rem;
}

.footer-services h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.footer-privacy {
    text-align: right;
    margin-top: 2rem;
}

.footer-privacy a {
    color: #555;
    text-decoration: none;
}

.footer-privacy a:hover {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom {
    background-color: #e9ecef;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom img {
    max-width: 150px;
    height: auto;
}

/* Responsive para footer */
@media (max-width: 991px) {
    .footer-privacy {
        text-align: center;
        margin-top: 2rem;
    }
}

/* Estilos adicionales para otras listas en el footer */
.footer-nav ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    position: relative;
}

.footer-nav ul li::before {
    content: "▸";
    color: #007bff;
    font-weight: bold;
    margin-right: 8px;
}

/* Hover effect para las listas de servicios */
.service-list li:hover::before {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.service-list li:hover {
    color: #007bff;
    transition: color 0.2s ease;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0;
    }
}

.whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 5px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }

        .whatsapp-float:focus {
            outline: none;
            text-decoration: none;
            color: white;
        }

        .whatsapp-icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .whatsapp-text {
            white-space: nowrap;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-float {
                padding: 12px 15px;
                font-size: 12px;
                bottom: 120px;
                right: 5px;
            }
            
            .whatsapp-icon {
                font-size: 20px;
                margin-right: 8px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                padding: 10px 12px;
                font-size: 11px;
            }
            
            .whatsapp-text {
                display: none;
            }
            
            .whatsapp-icon {
                margin-right: 0;
                font-size: 24px;
            }
        }

        /* Animación de pulso opcional */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .whatsapp-float.pulse {
            animation: pulse 2s infinite;
        }

        /* Contenido de ejemplo para la página */
        .content {
            padding: 20px;
            margin-bottom: 200px;
        }
