/* ==========================================
   VIDEO SECTION
   ========================================== */
.video-section {
    padding: 4rem 0;
    background: white;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        border-radius: 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 0;
    }
}
/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo .logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar-logo a:hover .logo-img {
    opacity: 0.8;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-links a {
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-links a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-transform: none;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-nav-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--primary-color);
    color: white;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-main {
    color: white;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    min-width: 20px;
    margin-top: 0.25rem;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: white;
}

.btn-footer-cta {
    margin-top: 1.5rem;
    background: #25D366;
    border-color: #25D366;
}

.btn-footer-cta:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   SERVICE AREA - ACTUALIZADO
   ========================================== */

.service-area-section {
    padding: 6rem 0;
    background: white;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 0;
    color: #666;
    font-size: 1.125rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--light-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.area-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--secondary-color);
    grid-column: span 1;
}

.area-card.featured .area-name,
.area-card.featured .area-description {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.area-card.featured .area-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.area-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-description {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-area-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 0;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-subtext {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}



/* ==========================================
   CONTACT INFO
   ========================================== */
.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-card-main a {
    color: var(--secondary-color);
}

.contact-card-main a:hover {
    color: var(--primary-color);
}

.contact-card-sub {
    color: #666;
    margin-bottom: 2rem;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-card-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-links {
        flex-direction: column;
        padding: 2rem;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .area-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .navbar-logo .logo-img {
        height: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .area-card {
        padding: 2rem 1.5rem;
    }
    
    .service-area-cta {
        padding: 2rem;
    }
    
    .cta-text {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-logo .logo-img {
        height: 35px;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        padding: 2rem;
    }
}