/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --text-color: #3c4043;
    --border-color: #dadce0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Optimización de rendimiento */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Reducir animaciones para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Styles */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img.lazy.loaded {
    opacity: 1;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(32, 33, 36, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transform: translateZ(0);
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--dark-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(26, 115, 232, 0.5));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.8));
    transform: scale(1.05);
}

.logo h1,
.logo-text {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(26, 115, 232, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imgs/IMG_1538.jpeg') center/cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(52, 168, 83, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Features - Nuevo diseño mejorado */
.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-width: 140px;
}

.hero-feature span {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-feature:hover span {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-feature p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Social Media Floating Buttons Container */
.social-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    z-index: 999;
    align-items: center;
}

/* Base style for all social floating buttons */
.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    min-width: 48px;
    min-height: 48px;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.social-float i {
    font-size: 28px;
    color: #fff;
}

.social-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-float {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation-delay: 0s;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Facebook Button */
.facebook-float {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
    animation-delay: 0.2s;
}

.facebook-float:hover {
    box-shadow: 0 6px 30px rgba(24, 119, 242, 0.6);
}

/* Instagram Button */
.instagram-float {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4, #5851db);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    animation-delay: 0.4s;
}

.instagram-float:hover {
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

/* TikTok Button */
.tiktok-float {
    background: linear-gradient(135deg, #000000, #00f2ea, #ff0050);
    box-shadow: 0 4px 20px rgba(0, 242, 234, 0.4);
    animation-delay: 0.6s;
}

.tiktok-float:hover {
    box-shadow: 0 6px 30px rgba(0, 242, 234, 0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mejorar interacción en móviles */
@media (max-width: 768px) {
    .social-float-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
        flex-direction: column !important;
    }
    
    .social-float {
        width: 55px;
        height: 55px;
        animation: none; /* Ahorrar batería */
    }
    
    .social-float i {
        font-size: 24px;
    }
    
    .social-float:active {
        transform: scale(0.95);
    }
    
    /* Mejorar hero-features en móviles */
    .hero-features {
        gap: 25px;
        padding: 0 10px;
    }
    
    .hero-feature {
        min-width: 120px;
    }
    
    .hero-feature span {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .hero-feature p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-float-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-float {
        width: 50px;
        height: 50px;
    }
    
    .social-float i {
        font-size: 22px;
    }
    
    /* Hero features en pantallas muy pequeñas */
    .hero-features {
        flex-direction: row;
        gap: 15px;
        align-items: stretch;
    }
    
    .hero-feature {
        min-width: 100px;
        flex: 1;
    }
    
    .hero-feature span {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .hero-feature p {
        font-size: 13px;
    }
}

/* Promo Banner - MEJORADO */
.promo-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff3d00 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(238, 90, 111, 0.4);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sparkles flotantes */
.promo-sparkle {
    position: absolute;
    font-size: 30px;
    opacity: 0.6;
    animation: sparkleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.promo-sparkle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.promo-sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.promo-sparkle-3 {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Badge "Oferta Especial" */
.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4); }
}

.promo-icon {
    font-size: 60px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.promo-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin: 10px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.highlight-text {
    display: inline-block;
    background: linear-gradient(90deg, #fff, #ffeb3b, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    font-size: 1.2em;
    text-shadow: none;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.promo-subtitle {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 400;
    margin: 0;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #fff;
    color: #ee5a6f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(238, 90, 111, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.promo-btn:hover::before {
    width: 300px;
    height: 300px;
}

.promo-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    border-color: #fff;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
}

.promo-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 22px;
}

.promo-btn:hover i {
    transform: scale(1.15);
}

.promo-btn span {
    position: relative;
    z-index: 1;
}

/* Desactivar animaciones costosas en móviles */
@media (max-width: 768px) {
    .promo-banner {
        padding: 35px 0;
    }
    
    .promo-banner::before {
        animation: none;
    }
    
    .promo-sparkle {
        display: none;
    }
    
    .promo-icon {
        font-size: 50px;
        animation: none;
    }
    
    .promo-title {
        font-size: 22px;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    .promo-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .promo-btn {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .promo-btn i {
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 1.15em;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 25px 0;
    }
    
    .promo-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .promo-icon {
        font-size: 40px;
    }
    
    .promo-title {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .promo-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .promo-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .promo-btn span {
        font-size: 13px;
    }
    
    .promo-btn i {
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 1.2em;
    }
}

/* Sticky Promo Banner */
.promo-banner-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff3d00 100%);
    color: #fff;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 0;
}

.promo-banner-sticky.visible {
    top: 75px; /* Debajo del navbar */
}

.promo-content-sticky {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    position: relative;
}

.promo-icon-sticky {
    font-size: 35px;
    animation: bounceSticky 2s infinite;
    flex-shrink: 0;
}

@keyframes bounceSticky {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-text-sticky {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.promo-text-sticky strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffeb3b;
}

.promo-text-sticky span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.highlight-text-sticky {
    background: linear-gradient(90deg, #fff, #ffeb3b, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    font-weight: 800;
    font-size: 1.1em;
}

.promo-btn-sticky {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: #fff;
    color: #ee5a6f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.promo-btn-sticky i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.promo-btn-sticky:hover i {
    transform: scale(1.2);
}

.promo-close-sticky {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.promo-close-sticky:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.promo-close-sticky i {
    font-size: 14px;
}

/* Responsive Sticky Banner */
@media (max-width: 768px) {
    .promo-banner-sticky {
        position: fixed;
    }
    
    .promo-banner-sticky.visible {
        top: 65px; /* Ajustado para navbar móvil */
    }
    
    .promo-content-sticky {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 10px 45px 10px 10px;
        gap: 10px;
        align-items: center;
    }
    
    .promo-icon-sticky {
        font-size: 28px;
        animation: none;
        flex-shrink: 0;
    }
    
    .promo-text-sticky {
        flex: 1;
        min-width: 0;
        gap: 2px;
    }
    
    .promo-text-sticky strong {
        font-size: 11px;
        display: block;
    }
    
    .promo-text-sticky span {
        font-size: 12px;
        display: block;
        line-height: 1.2;
    }
    
    .promo-btn-sticky {
        padding: 10px 18px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .promo-btn-sticky span {
        display: none;
    }
    
    .promo-btn-sticky i {
        font-size: 20px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .promo-banner-sticky.visible {
        top: 60px;
    }
    
    .promo-content-sticky {
        padding: 8px 40px 8px 8px;
        gap: 8px;
    }
    
    .promo-icon-sticky {
        font-size: 24px;
    }
    
    .promo-text-sticky {
        gap: 1px;
    }
    
    .promo-text-sticky strong {
        font-size: 10px;
    }
    
    .promo-text-sticky span {
        font-size: 11px;
    }
    
    .promo-btn-sticky {
        padding: 8px 15px;
    }
    
    .promo-btn-sticky i {
        font-size: 18px;
    }
    
    .promo-close-sticky {
        top: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
    }
    
    .promo-close-sticky i {
        font-size: 12px;
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.2);
}

/* Mejorar interacción táctil en móviles */
@media (max-width: 768px) {
    .service-card {
        padding: 25px;
        min-height: 48px; /* Mínimo recomendado para touch targets */
    }
    .service-card:active {
        transform: scale(0.98);
    }
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 60px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.2);
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 56px;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--secondary-color);
    transform: scale(1.15) rotate(5deg);
}

.why-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background-color: var(--light-color);
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 140px;
    justify-content: center;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.brand-item img {
    width: 80px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-item i {
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition);
}

.brand-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Testimonials Section - Google Reviews */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.google-rating {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    font-size: 32px;
    letter-spacing: 3px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Carrusel de Reseñas */
.reviews-carousel {
    position: relative;
    max-width: 1100px;
    margin: 50px auto 30px;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    padding: 10px;
    background: transparent;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 10px;
    width: 100%;
}

.review-card {
    min-width: calc(50% - 15px);
    flex-shrink: 0;
    background: #fff;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 1;
    border: 1px solid var(--border-color);
    transition: opacity 0.3s ease;
}

.review-card.active {
    display: flex;
    animation: fadeInReview 0.5s ease-in-out;
}

@keyframes fadeInReview {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar i {
    font-size: 35px;
    color: #fff;
}

.review-info {
    flex: 1;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 5px 0;
}

.review-stars {
    font-size: 18px;
    color: #ffc107;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    padding: 0 10px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4285f4;
    font-size: 14px;
    font-weight: 500;
}

.review-footer i {
    font-size: 18px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn i {
    font-size: 18px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(26, 115, 232, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.15);
}

.google-reviews-widget {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.google-reviews-widget:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.google-reviews-widget iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.testimonials-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-google-reviews,
.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-google-reviews {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    border: 2px solid transparent;
}

.btn-google-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #5a95f5, #47b566);
}

.btn-write-review {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-write-review:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 115, 232, 0.3);
}

.btn-google-reviews i,
.btn-write-review i {
    font-size: 20px;
}

/* Legacy testimonial styles (mantener por si acaso) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 14px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(26, 115, 232, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
}

.faq-icon {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-color);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.info-item h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    margin-top: 8px;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.map-link i {
    font-size: 14px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Google Maps Container */
.map-container {
    margin-top: 60px;
}

.google-map {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    border: 3px solid var(--light-color);
    transition: var(--transition);
}

.google-map:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.google-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-link i {
    font-size: 16px;
}

.schedule {
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    font-size: 14px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-developer > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.ocmind-link {
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.ocmind-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.ocmind-link:hover .ocmind-logo {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(26, 115, 232, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.ocmind-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.ocmind-link:hover .ocmind-logo img {
    transform: scale(1.1);
}

.ocmind-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ocmind-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.ocmind-tagline {
    font-size: 10px;
    font-weight: 500;
    color: rgba(26, 115, 232, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
    will-change: transform, opacity;
    /* Mejorar touch target */
    min-width: 48px;
    min-height: 48px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.6);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    /* Ajustar posición para no solaparse con botones sociales */
    .scroll-top {
        bottom: 15px;
        left: 15px;
    }
}

.scroll-top i {
    font-size: 20px;
    color: #fff;
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .promo-content h3 {
        font-size: 16px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .brand-logo {
        width: 60px;
        height: 40px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-item video {
        height: 200px;
    }

    .promo-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid,
    .gallery-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Google Reviews responsive */
    .rating-stars {
        font-size: 28px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    /* Carrusel responsive */
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .review-card {
        min-width: 100% !important;
        flex-shrink: 0;
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .carousel-track {
        gap: 20px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-avatar i {
        font-size: 28px;
    }
    
    .review-author {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    .google-reviews-widget iframe {
        min-height: 350px;
    }
    
    .testimonials-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-google-reviews,
    .btn-write-review {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 40px;
    }

    .brands-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-developer {
        flex-direction: column;
        gap: 8px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
    
    .google-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: clamp(22px, 6vw, 26px); /* Tamaño fluido */
    }

    .hero-content p {
        font-size: clamp(14px, 4vw, 16px); /* Tamaño fluido */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 30px; /* Aumentar para mejor touch target (mínimo 44px de altura) */
        font-size: 14px;
        width: 100%;
        min-height: 48px; /* Touch target recomendado */
    }

    .promo-content {
        flex-direction: column;
        gap: 10px;
    }

    .promo-content h3 {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .brands-list {
        grid-template-columns: 1fr;
    }

    .ocmind-logo {
        padding: 6px 12px;
    }

    .ocmind-logo img {
        height: 28px;
    }

    .ocmind-name {
        font-size: 14px;
    }
    
    /* Google Reviews en móviles pequeños */
    .rating-stars {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    /* Carrusel en móviles pequeños */
    .reviews-carousel {
        padding: 0 40px;
    }
    
    .review-card {
        min-width: 100% !important;
        flex-shrink: 0;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
    
    .review-avatar i {
        font-size: 24px;
    }
    
    .review-author {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 14px;
        padding: 0;
    }
    
    .review-stars {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .google-reviews-widget iframe {
        min-height: 300px;
    }
    
    .btn-google-reviews,
    .btn-write-review {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-google-reviews i,
    .btn-write-review i {
        font-size: 18px;
    }

    .ocmind-tagline {
        font-size: 9px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta .btn-primary,
    .cta .btn-secondary {
        width: 100%;
    }

    .service-icon i {
        font-size: 46px;
    }

    .why-icon i {
        font-size: 42px;
    }

    .brand-item i {
        font-size: 32px;
    }
}

/* Optimizaciones adicionales de rendimiento */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Optimizar hover states solo para dispositivos con cursor */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover,
    .why-card:hover,
    .brand-item:hover,
    .testimonial-card:hover,
    .gallery-item:hover {
        transform: translateY(-10px);
    }
}

/* Para dispositivos táctiles, usar :active en lugar de :hover */
@media (hover: none) and (pointer: coarse) {
    .service-card:active,
    .why-card:active,
    .brand-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Mejorar legibilidad en pantallas pequeñas */
@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px; /* Evita zoom en iOS */
    }
}

/* Estilo para campos de formulario con error */
input.error, textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
