/* RESET Y GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121111;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orange-text { color: #FF7439; }
.text-center { text-align: center; }

/* HEADER */
header {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 70px; }

nav ul {
    list-style: none;
    display: flex;
}

nav ul li { margin-left: 25px; }

nav ul li a {
    text-decoration: none;
    color: #FF7439;
    font-weight: 700;
    font-size: 14px;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #FF7439;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(18, 17, 17, 0.75), rgba(255, 116, 57, 0.3)), url('img/Hero/Hero.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-top {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.orange-cta-box {
    background-color: #FF7439;
    color: white;
    padding: 20px 40px;
    display: inline-block;
    position: absolute;
    right: 5%;
    bottom: -30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.orange-cta-box p { margin: 0; font-weight: 700; }
.phone-number { font-size: 2rem; display: block; color: inherit; text-decoration: none; }
.phone-number:hover { text-decoration: underline; }

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
}

.feature-col {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    text-align: center;
}

.dark-gray { background-color: #262626; }
.orange { background-color: #FF7439; }
.medium-gray { background-color: #333333; }

.feature-col .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-col h3 { margin: 15px 0; font-size: 1.5rem; }

/* ABOUT */
.about { padding: 100px 0; background-color: #121111; }
.split { display: flex; align-items: center; gap: 50px; }
.about-image img { width: 100%; border-radius: 20px; }
.about-info { flex: 1; }

.section-title { font-size: 2.5rem; font-weight: 800; }
.divider { width: 50px; height: 3px; background-color: #555; margin: 15px 0; }

.about-info h3 { font-size: 1.8rem; margin-bottom: 20px; }
.about-info p { margin-bottom: 15px; font-size: 0.95rem; color: #ccc; }

/* MISSION VISION */
.mission-vision { background-color: #ffffff; color: #000; padding: 80px 0; text-align: center; }
.divider-orange { width: 50px; height: 2px; background-color: #FF7439; margin: 15px auto; }
.mv-grid { display: flex; gap: 40px; margin-top: 40px; text-align: left; }
.mv-item { flex: 1; }
.mv-item h4 { font-size: 1.5rem; margin-bottom: 15px; }

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #000;
}

.slides-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
    opacity: 0;
}

.slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.slide.slide-out {
    transform: translateX(-100%);
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 116, 57, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(255, 116, 57, 1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* SERVICES */
.services-main { padding: 80px 0; }
.service-row { display: flex; gap: 50px; align-items: center; margin-top: 60px; }
.service-row.reverse { flex-direction: row-reverse; }
.service-img-box { flex: 1; }
.short-divider { width: 40px; height: 3px; background-color: #FF7439; margin-bottom: 20px; }
.service-text-box { flex: 1; }
.service-text-box h3 { font-size: 2rem; margin-bottom: 15px; }
.btn-orange { 
    display: inline-block; 
    background-color: #FF7439; 
    color: white; 
    padding: 12px 25px; 
    text-decoration: none; 
    font-weight: 700; 
    margin-top: 20px;
    font-size: 0.8rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #ff6a1f;
}

/* CONTACT */
.contact-section { background-color: #FF7439; color: white; padding: 80px 0; }
.contact-title { font-size: 3rem; font-weight: 800; color: white; }
.divider-dark { width: 60px; height: 3px; background-color: white; margin: 15px auto; }
.contact-desc { max-width: 800px; margin: 0 auto 40px auto; font-weight: 600; color: white; }
.contact-info-grid { display: flex; justify-content: space-around; font-weight: 800; }
.contact-info-grid h3 { font-size: 1.8rem; color: white; }
.contact-info-grid p { color: white; }

/* FINAL BANNER */
.final-banner { background-color: #262626; padding: 60px 0; text-align: center; border-bottom: 1px solid #444; }
.final-banner h2 { font-size: 2.5rem; margin-top: 10px; }
.phone-link { color: #FF7439; text-decoration: none; font-weight: 800; }
.phone-link:hover { text-decoration: underline; }

footer { background-color: #262626; padding: 20px 0; font-size: 0.9rem; }

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}

.whatsapp-float:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.whatsapp-float img { 
    width: 35px; 
    height: 35px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .split, .mv-grid, .service-row, .service-row.reverse { flex-direction: column; }
    
    .navbar { 
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger { display: flex; }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #ffffff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 0;
        padding: 0;
    }
    
    nav ul li {
        margin-left: 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li a {
        display: block;
        padding: 20px 30px;
        font-size: 16px;
    }
    
    .slider {
        margin: 0 -20px;
        border-radius: 0;
        width: 100vw;
    }
    
    .slides-container { height: 300px; }
    .slider-btn { padding: 10px 15px; font-size: 18px; }
    
    .service-img-box {
        width: 100%;
        margin: 0;
    }
    
    .contact-info-grid { flex-direction: column; gap: 30px; }
    .contact-info-grid p { font-size: 0.9rem; }
    .feature-col { min-width: 100%; }
}