/*--------------------------------------------------------------------- 
   Tema Oscuro con Azules Vibrantes - INNOVATETECH
   Basado en la imagen corporativa con interfaz digital azul
---------------------------------------------------------------------*/

/* Variables de colores principales */
:root {
    --dark-bg: #0a0a0a;
    --dark-blue: #0d1421;
    --medium-blue: #1a2332;
    --bright-blue: #00a8ff;
    --vibrant-blue: #0097e6;
    --light-blue: #74b9ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2d3436;
    --accent-blue: #0984e3;
}

/* Fondo general */
body {
    background: var(--dark-bg);
    color: var(--white);
}

/* Mejoras de contraste para texto */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
}

p {
    color: var(--light-gray);
}

/* Mejoras para enlaces */
a {
    color: var(--bright-blue);
}

a:hover {
    color: var(--light-blue);
}

/* Header superior */
.header_to {
    background-color: var(--dark-blue);
    border-bottom: 1px solid var(--bright-blue);
}

/* Header medio */
.header_midil {
    background-color: var(--medium-blue);
    border-bottom: 2px solid var(--bright-blue);
}

/* Header inferior */
.header_bo {
    background-color: var(--dark-blue);
    border-bottom: 1px solid var(--bright-blue);
}

/* Navegación */
.navigation.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--white);
    background-color: var(--bright-blue);
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
    color: var(--white);
    background-color: var(--bright-blue);
}

/* Botón WhatsApp */
.sign_btn {
    background: var(--bright-blue);
    color: var(--white);
}

.sign_btn:hover {
    background-color: var(--vibrant-blue);
}

/* Banner principal */
.banner_main {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    position: relative;
    overflow: hidden;
}

.banner_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--bright-blue) 0%, transparent 50%);
    opacity: 0.15;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

.text-bg h1 {
    color: var(--white);
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.text-bg span {
    color: var(--bright-blue);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.text-bg p {
    color: var(--light-gray);
}

/* Títulos de sección */
.titlepage h2 {
    color: var(--white);
}

.yellow {
    color: var(--bright-blue);
}

.titlepage p {
    color: var(--light-gray);
}

/* Sección About */
.about {
    background-color: var(--dark-blue);
}

.about_box h3 {
    color: var(--bright-blue);
}

.about_box span {
    color: var(--light-gray);
}

.about_box p {
    color: var(--white);
}

.try {
    color: var(--bright-blue);
}

.about .read_morea {
    background: var(--bright-blue);
    color: var(--white);
}

.about .read_morea:hover {
    background: var(--vibrant-blue);
}

/* Sección Servicios */
.service {
    background-color: var(--medium-blue);
}

.service .service_box {
    background: linear-gradient(145deg, var(--dark-blue) 0%, rgba(0, 168, 255, 0.05) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service .service_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-blue), var(--light-blue), var(--bright-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service .service_box:hover {
    box-shadow: 0 15px 35px rgba(0, 168, 255, 0.2);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--bright-blue);
}

.service .service_box:hover::before {
    transform: scaleX(1);
}

.service .service_box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service .service_box:hover img {
    transform: scale(1.1) rotate(5deg);
}

.service .service_box h3 {
    color: var(--bright-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service .service_box p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 14px;
}

#ho_color:hover.service_box h3 {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(116, 185, 255, 0.5);
}

/* Sección Business */
.business {
    background-color: var(--dark-blue);
}

.business .business_box {
    background: linear-gradient(135deg, var(--medium-blue) 0%, rgba(0, 168, 255, 0.1) 100%);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.business .business_box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.business .business_box:hover::before {
    transform: scale(1);
}

.business .business_box:hover {
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.25);
    transform: translateY(-15px) scale(1.05);
    border-color: var(--bright-blue);
}

.business .business_box i {
    display: block;
    margin-bottom: 20px;
}

.business .business_box i img {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.business .business_box:hover i img {
    transform: scale(1.2) rotate(10deg);
}

.business .business_box h3 {
    color: var(--bright-blue);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
    transition: all 0.3s ease;
}

.business .business_box:hover h3 {
    color: var(--light-blue);
    transform: scale(1.1);
}

.business .business_box p {
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Sección Team */
.team {
    background-color: var(--medium-blue);
}

.team .titlepage h2 {
    color: var(--white);
}

.team_img {
    background: linear-gradient(145deg, var(--dark-blue) 0%, rgba(0, 168, 255, 0.05) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team_img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 168, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team_img:hover::before {
    transform: translateX(100%);
}

.team_img:hover {
    box-shadow: 0 15px 35px rgba(0, 168, 255, 0.2);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--bright-blue);
}

.team_img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team_img:hover img {
    transform: scale(1.05);
}

.ho_socal {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--vibrant-blue) 100%);
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.team_img:hover .ho_socal {
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--light-blue) 100%);
    transform: translateY(-5px);
}

.team_Carousel .carousel-indicators .active {
    background-color: var(--bright-blue);
    transform: scale(1.2);
}

/* Sección Testimonial */
.testimonial {
    background-color: var(--dark-blue);
}

.testimonial .titlepage h2 {
    color: var(--white);
}

.testimonial_Carousel .test_box {
    background-color: var(--medium-blue);
    border: 1px solid var(--bright-blue);
}

.testimonial_Carousel .test_box span {
    color: var(--bright-blue);
}

.testimonial_Carousel .test_box p {
    color: var(--light-gray);
}

.testimonial_Carousel .carousel-indicators .active {
    background-color: var(--bright-blue);
}

/* Sección Contact */
.contact {
    background-color: var(--medium-blue);
}

.contact .titlepage h2 {
    color: var(--white);
}

.contact_form .contact_control {
    background-color: var(--dark-blue);
    border: 1px solid var(--bright-blue);
    color: var(--white);
}

.contact_form .textarea {
    background-color: var(--dark-blue);
    border: 1px solid var(--bright-blue);
    color: var(--white);
}

.contact_form .send_btn {
    background: var(--bright-blue);
    color: var(--white);
}

.contact_form .send_btn:hover {
    background: var(--vibrant-blue);
}

#post_form *::placeholder {
    color: var(--light-gray);
}

/* Footer Mejorado */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-top: 2px solid var(--bright-blue);
    padding-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
}

/* Sección de marca */
.footer-brand {
    padding-right: 20px;
}

.footer-brand p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-brand h5 {
    color: var(--bright-blue);
    font-size: 16px;
    margin-bottom: 15px;
}

/* Información de contacto */
.footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact h3 i {
    color: var(--bright-blue);
    font-size: 18px;
}

.location_icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location_icon li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 168, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--bright-blue);
    transition: all 0.3s ease;
}

.location_icon li:hover {
    background: rgba(0, 168, 255, 0.1);
    transform: translateX(5px);
}

.location_icon li a {
    color: var(--bright-blue);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.location_icon li a:hover {
    color: var(--light-blue);
    transform: scale(1.1);
}

.contact-info {
    flex: 1;
    color: var(--light-gray);
    line-height: 1.5;
}

.contact-info strong {
    color: var(--white);
    font-weight: 600;
}

.contact-info a {
    color: var(--bright-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--light-blue);
}

/* Enlaces rápidos */
.footer-links h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h3 i {
    color: var(--bright-blue);
    font-size: 18px;
}

.link_icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link_icon li {
    margin-bottom: 12px;
}

.link_icon li a {
    color: var(--light-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.link_icon li a:hover {
    color: var(--bright-blue);
    background: rgba(0, 168, 255, 0.1);
    transform: translateX(5px);
}

.link_icon li a i {
    color: var(--bright-blue);
    font-size: 14px;
    width: 16px;
}

/* Newsletter */
.footer-newsletter h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter h3 i {
    color: var(--bright-blue);
    font-size: 18px;
}

.footer-newsletter p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form .news {
    background: var(--dark-blue);
    border: 1px solid var(--bright-blue);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form .news:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

.newsletter-form .send_btn {
    background: var(--bright-blue);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-form .send_btn:hover {
    background: var(--vibrant-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

/* Redes sociales */
.social-links h5 {
    color: var(--bright-blue);
    font-size: 16px;
    margin-bottom: 15px;
}

.social_icon {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social_icon li a {
    background: var(--bright-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social_icon li a:hover {
    background: var(--vibrant-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
}

/* Separador */
.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
    margin: 40px 0;
}

/* Información adicional */
.footer-services h5,
.footer-legal h5 {
    color: var(--bright-blue);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services h5 i,
.footer-legal h5 i {
    font-size: 14px;
}

.service-list,
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li,
.legal-list li {
    color: var(--light-gray);
    margin-bottom: 8px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.service-list li:hover,
.legal-list li:hover {
    color: var(--bright-blue);
}

.legal-list li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-list li a:hover {
    color: var(--bright-blue);
}

/* Copyright */
.copyright {
    background-color: var(--dark-blue);
    border-top: 1px solid var(--bright-blue);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    color: var(--light-gray);
    margin: 0;
    font-size: 14px;
}

.copyright a {
    color: var(--bright-blue);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--light-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-brand,
    .footer-contact,
    .footer-links,
    .footer-newsletter {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .location_icon li {
        flex-direction: column;
        text-align: center;
    }
    
    .location_icon li a {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .social_icon {
        justify-content: center;
    }
    
    .copyright .row {
        text-align: center;
    }
    
    .copyright .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
    
    /* Responsive para cajas modernas */
    .service .service_box,
    .business .business_box,
    .team_img {
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    .service .service_box:hover,
    .business .business_box:hover,
    .team_img:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .business .business_box h3 {
        font-size: 36px;
    }
}

/* Efectos adicionales para cajas modernas */
.service .service_box,
.business .business_box,
.team_img {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de partículas flotantes */
.service .service_box::after,
.business .business_box::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 4px;
    height: 4px;
    background: var(--bright-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Efectos adicionales */
.read_more {
    color: var(--bright-blue) !important;
}

.read_more::before {
    border-right: var(--bright-blue) solid 1px;
}

/* Efectos de hover generales */
a:hover {
    color: var(--bright-blue);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--bright-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vibrant-blue);
}

/* Efectos de glow para elementos importantes */
.text-bg h1,
.titlepage h2,
.service .service_box h3,
.business .business_box h3 {
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

/* Efectos de interfaz digital */
.service .service_box,
.business .business_box,
.team_img,
.testimonial_Carousel .test_box {
    position: relative;
    overflow: hidden;
}

.service .service_box::before,
.business .business_box::before,
.team_img::before,
.testimonial_Carousel .test_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.1), transparent);
    transition: left 0.5s;
}

.service .service_box:hover::before,
.business .business_box:hover::before,
.team_img:hover::before,
.testimonial_Carousel .test_box:hover::before {
    left: 100%;
}

/* Animaciones sutiles */
.service .service_box,
.business .business_box,
.team_img {
    transition: all 0.3s ease;
}

.service .service_box:hover,
.business .business_box:hover,
.team_img:hover {
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
} 

/*--------------------------------------------------------------------- 
   LOADER PERSONALIZADO - Logo de la empresa girando
---------------------------------------------------------------------*/

/* Fondo del loader con tema oscuro */
.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor del loader */
.loader {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Logo girando */
.loader img {
    width: 120px;
    height: 120px;
    animation: rotate 2s linear infinite;
    filter: drop-shadow(0 0 20px var(--bright-blue));
}

/* Texto de carga */
.loader::after {
    content: 'INNOVATETECH';
    color: var(--bright-blue);
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite alternate;
    text-shadow: 0 0 10px var(--bright-blue);
}

/* Animación de rotación */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animación de pulso para el texto */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Efectos adicionales para el loader */
.loader::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-top: 2px solid var(--bright-blue);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    opacity: 0.3;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive para el loader */
@media (max-width: 768px) {
    .loader img {
        width: 80px;
        height: 80px;
    }
    
    .loader::after {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .loader::before {
        width: 150px;
        height: 150px;
    }
} 

/* ========================================
   MEJORAS RESPONSIVE ADICIONALES
======================================== */

/* Mejoras para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .banner_main {
        padding: 60px 0;
    }
    
    .text-bg h1 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .service .service_box,
    .business .business_box {
        margin-bottom: 25px;
    }
    
    .footer-brand p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mejoras para móviles */
@media (max-width: 767px) {
    .banner_main {
        padding: 40px 0;
        text-align: center;
    }
    
    .text-bg h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .text-bg span {
        font-size: 16px;
    }
    
    .text-bg p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .about_box {
        text-align: center;
        padding: 25px 15px;
    }
    
    .service .service_box,
    .business .business_box {
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .service .service_box h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .service .service_box p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .business .business_box h3 {
        font-size: 28px;
    }
    
    .business .business_box p {
        font-size: 13px;
    }
    
    /* Navegación móvil mejorada */
    .navigation .navbar-collapse {
        background: var(--dark-blue);
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .navigation.navbar-dark .navbar-nav .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .navigation.navbar-dark .navbar-nav .nav-link:hover {
        background-color: var(--bright-blue);
        color: var(--white);
    }
    
    /* Footer móvil */
    .footer-brand,
    .footer-contact,
    .footer-links,
    .footer-newsletter {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .location_icon li {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .location_icon li a {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .social_icon {
        justify-content: center;
    }
    
    .copyright .row {
        text-align: center;
    }
    
    .copyright .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
    
    /* Formulario de contacto móvil */
    .contact_form .contact_control,
    .contact_form .textarea {
        padding: 12px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .contact_form .send_btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* Móviles pequeños */
@media (max-width: 575px) {
    .text-bg h1 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .text-bg span {
        font-size: 14px;
    }
    
    .text-bg p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .titlepage h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .about_box {
        padding: 20px 15px;
    }
    
    .about_box h3 {
        font-size: 18px;
    }
    
    .about_box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .service .service_box,
    .business .business_box {
        padding: 20px 15px;
    }
    
    .service .service_box h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .service .service_box p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .business .business_box h3 {
        font-size: 24px;
    }
    
    .business .business_box p {
        font-size: 12px;
    }
    
    .footer-brand p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-contact h3,
    .footer-links h3,
    .footer-newsletter h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-info {
        font-size: 12px;
    }
    
    .social_icon li a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .contact_form .contact_control,
    .contact_form .textarea {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact_form .send_btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 375px) {
    .text-bg h1 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .text-bg span {
        font-size: 12px;
    }
    
    .text-bg p {
        font-size: 13px;
    }
    
    .titlepage h2 {
        font-size: 20px;
    }
    
    .service .service_box,
    .business .business_box {
        padding: 15px 10px;
    }
    
    .service .service_box h3 {
        font-size: 14px;
    }
    
    .service .service_box p {
        font-size: 11px;
    }
    
    .business .business_box h3 {
        font-size: 20px;
    }
    
    .footer-brand p {
        font-size: 12px;
    }
    
    .footer-contact h3,
    .footer-links h3,
    .footer-newsletter h3 {
        font-size: 15px;
    }
    
    .contact-info {
        font-size: 11px;
    }
    
    .copyright p {
        font-size: 11px;
    }
}

/* Orientación landscape en móviles */
@media (max-width: 767px) and (orientation: landscape) {
    .text-bg {
        padding-top: 20px;
    }
    
    .text-bg h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .about_box {
        padding: 20px 15px;
    }
    
    .service .service_box,
    .business .business_box {
        padding: 15px 10px;
    }
    
    .navigation .navbar-collapse {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .service .service_box,
    .business .business_box,
    .team_img,
    .loader img,
    .loader::before,
    .loader::after {
        animation: none;
        transition: none;
    }
}

/* Impresión */
@media print {
    .header,
    .footer,
    .loader_bg,
    .navigation,
    .sign_btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .text-bg h1,
    .titlepage h2,
    .service .service_box h3,
    .business .business_box h3 {
        color: black !important;
    }
    
    .service .service_box,
    .business .business_box {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        background: white !important;
    }
} 