/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Top Header */
#top-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

#top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-info span {
    margin-right: 20px;
}

.top-header-info a {
    color: #fff;
    text-decoration: none;
}

.top-header-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.top-header-social a:hover {
    opacity: 0.8;
}

/* Header Principal */
#main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    max-height: 60px;
}

#top-menu-nav ul {
    display: flex;
    list-style: none;
}

#top-menu-nav ul li {
    margin-left: 30px;
}

#top-menu-nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

#top-menu-nav ul li a:hover {
    color: #27ae60;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/fondo.jpg') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #219a52;
}

/* Descripción Section */
.descripcion-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
    font-size: 18px;
}

/* Servicios Section */
.servicios-section {
    padding: 50px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.col-2-5 {
    width: 40%;
    padding: 0 15px;
}

.col-3-5 {
    width: 60%;
    padding: 0 15px;
}

.col-1-2 {
    width: 50%;
    padding: 0 15px;
}

.col-1-3 {
    width: 33.333%;
    padding: 0 15px;
}

.col-4-4 {
    width: 100%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-box h3 i {
    color: #27ae60;
    margin-right: 10px;
}

.content-box p {
    margin-bottom: 15px;
}

/* Videos Section */
.videos-section {
    background-color: #34495e;
    color: #fff;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #fff;
}

.video-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

/* Galería Section */
.galeria-section {
    padding: 50px 0;
    background-color: #ecf0f1;
}

.galeria-section .section-title {
    color: #2c3e50;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider {
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mapa Section */
.mapa-section {
    padding: 0;
}

.mapa-section iframe {
    display: block;
}

/* Contacto Section */
.contacto-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0;
}

.contacto-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.contacto-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contacto-info i {
    width: 30px;
    color: #27ae60;
    margin-right: 10px;
}

.contacto-info a {
    color: #fff;
    text-decoration: none;
}

.contacto-info a:hover {
    text-decoration: underline;
    color: #27ae60;
}

/* Footer */
#main-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 30px 0;
    text-align: center;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    color: #bdc3c7;
    margin: 0 15px;
    font-size: 24px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #27ae60;
}

.footer-info {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .top-header-info span {
        display: block;
        margin: 5px 0;
    }
    
    .top-header-social {
        text-align: center;
        width: 100%;
    }
    
    .top-header-social a {
        margin: 0 10px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    #top-menu-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    #top-menu-nav.active {
        display: block;
    }
    
    #top-menu-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    #top-menu-nav ul li {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .col-2-5, .col-3-5, .col-1-2, .col-1-3 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .slide img {
        height: 300px;
    }
}