/* ===================================
   Variables y Reset
   =================================== */
:root {
    --color-primary: #E1000F; /* Rojo Renault Trucks */
    --color-primary-dark: #B8000C;
    --color-primary-light: #FF1A2A;
    --color-secondary: #1a1a1a;
    --color-text: #333;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-bg: #f8f8f8;
    --color-border: #e0e0e0;
    
    --font-primary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevenir zoom en inputs en iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Fondo animado sutil */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(225, 0, 15, 0.15) 49%, rgba(225, 0, 15, 0.15) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(26, 26, 26, 0.08) 49%, rgba(26, 26, 26, 0.08) 51%, transparent 52%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: backgroundMove 40s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Deshabilitar efectos hover en touch devices */
@media (hover: none) {
    .feature-item:hover,
    .brand-card:hover,
    .btn:hover {
        transform: none;
    }
    
    /* Pero mantener el cambio de color en botones */
    .btn:active {
        transform: scale(0.98);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Adaptación progresiva del contenedor según tamaño de pantalla */
@media (max-width: 1800px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 95%;
    }
}

/* Touch-friendly para móviles */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu > li > a {
        padding: 12px 0;
    }
}

/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Fondo animado con gradiente rojo */
.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E1000F 0%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Icono del camión con animación */
.loader-icon {
    width: 120px;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

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

/* Spinner circular */
.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Texto de carga */
.loader-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   Header
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-top {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--color-primary);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--color-white);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--color-primary);
}

.social-links a {
    color: var(--color-white);
    margin-left: 12px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.social-links a:hover::before {
    background-color: currentColor;
}

.navbar {
    padding: 12px 0;
}

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

.navbar-home .container {
    justify-content: flex-start;
    position: relative;
}

.navbar-home .nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.logo-home .logo-img {
    height: 75px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-home .logo-img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu > li > a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 8px;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin: 30px 20px;
    max-width: calc(1600px - 40px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Adaptación hero según tamaño de pantalla */
@media (max-width: 1800px) {
    .hero {
        max-width: calc(1400px - 40px);
    }
}

@media (max-width: 1500px) {
    .hero {
        max-width: calc(1200px - 40px);
    }
}

@media (max-width: 1300px) {
    .hero {
        max-width: calc(95% - 40px);
    }
}

/* Prevenir overflow en móviles */
@media (max-width: 768px) {
    .hero {
        margin: 20px 15px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 576px) {
    .hero {
        margin: 15px 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 375px) {
    .hero {
        margin: 10px 5px;
        max-width: calc(100% - 10px);
    }
}

.hero-slider {
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 0, 15, 1) 0%, rgba(26, 26, 26, 1) 100%);
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--color-primary);
}

.hero-prev { left: 15px; }
.hero-next { right: 15px; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--color-white);
    width: 25px;
    border-radius: 5px;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 80px 0;
    background: var(--color-white);
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--color-primary);
    font-weight: 500;
}

.feature-link:hover {
    color: var(--color-primary-dark);
}

/* ===================================
   Brands Section
   =================================== */
.brands-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--color-secondary);
}

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

.brand-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.brand-logo img {
    max-height: 100%;
    width: auto;
}

.brand-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.brand-card p {
    color: var(--color-text-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-contact li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ===================================
   Responsive Design System
   =================================== */

/* Tablets Landscape y Pantallas Medianas (≤1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablets Portrait (≤992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .hero {
        height: 300px;
        margin: 25px 20px;
    }
    
    .hero-content {
        height: 300px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets Portrait y Móviles Landscape (≤768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header Top */
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 8px 0;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-info a {
        margin-right: 10px;
        font-size: 12px;
    }
    
    .social-links a {
        margin-left: 8px;
        font-size: 14px;
    }

    /* Navigation */
    .navbar-home .container {
        justify-content: space-between;
    }

    .navbar-home .nav-menu {
        position: fixed;
        left: -100%;
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 125px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 125px);
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        gap: 15px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-bg);
        margin-top: 8px;
        border-radius: 8px;
        padding: 12px;
    }
    
    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        height: 280px;
        margin: 20px 15px;
        border-radius: 15px;
    }

    .hero-content {
        height: 280px;
        padding: 18px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .hero-prev,
    .hero-next {
        font-size: 22px;
        width: 35px;
        height: 35px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }

    /* Grids */
    .features-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .brand-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .feature-link {
        font-size: 14px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Móviles Landscape (≤576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header-top {
        font-size: 11px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-home .logo-img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        height: 250px;
        margin: 15px 10px;
        border-radius: 12px;
    }

    .hero-content {
        height: 250px;
        padding: 15px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .hero-prev,
    .hero-next {
        font-size: 22px;
        width: 36px;
        height: 36px;
    }
    
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
    
    .hero-dots {
        bottom: 12px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    /* Features & Brands */
    .feature-item,
    .brand-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .feature-item h3,
    .brand-item h3 {
        font-size: 18px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li a,
    .footer-column p {
        font-size: 13px;
    }
}

/* Móviles Portrait Pequeños (≤480px) */
@media (max-width: 480px) {
    .hero {
        height: 240px;
        margin: 12px 8px;
    }

    .hero-content {
        height: 240px;
        padding: 12px;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 8px;
        max-width: 280px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .hero-prev,
    .hero-next {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }
    
    .hero-prev { left: 6px; }
    .hero-next { right: 6px; }
    
    .hero-dots {
        bottom: 10px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

/* Móviles Extra Pequeños (≤375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        margin: 10px 5px;
        height: 230px;
    }
    
    .hero-content {
        height: 230px;
        padding: 10px;
    }
    
    .hero-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        gap: 8px;
        max-width: 260px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .features {
        padding: 35px 0;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-card h3 {
        font-size: 17px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .hero-prev,
    .hero-next {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    
    .hero-prev { left: 5px; }
    .hero-next { right: 5px; }
    
    .hero-dots {
        bottom: 8px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
}

/* ===================================
    Icons
    =================================== */
.icon-phone::before { 
    content: "📞";
    margin-right: 6px;
    font-size: 14px;
}

.icon-email::before { 
    content: "✉️";
    margin-right: 6px;
    font-size: 14px;
}

.icon-facebook::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073C24 5.405 18.627 0 12 0S0 5.405 0 12.073c0 6.019 4.388 11.005 10.125 11.93v-8.437H7.078v-3.493h3.047V9.41c0-3.017 1.792-4.688 4.533-4.688 1.312 0 2.686.236 2.686.236v2.973h-1.514c-1.491 0-1.956.93-1.956 1.885v2.257h3.328l-.532 3.493h-2.796v8.437C19.612 23.078 24 18.092 24 12.073z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073C24 5.405 18.627 0 12 0S0 5.405 0 12.073c0 6.019 4.388 11.005 10.125 11.93v-8.437H7.078v-3.493h3.047V9.41c0-3.017 1.792-4.688 4.533-4.688 1.312 0 2.686.236 2.686.236v2.973h-1.514c-1.491 0-1.956.93-1.956 1.885v2.257h3.328l-.532 3.493h-2.796v8.437C19.612 23.078 24 18.092 24 12.073z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-instagram::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6zm9.65 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6zm9.65 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-linkedin::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.03-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.34V8.99h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.29zM5.32 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zM3.54 20.45H7.1V8.99H3.54v11.46z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.03-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.34V8.99h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.29zM5.32 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zM3.54 20.45H7.1V8.99H3.54v11.46z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-tiktok::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.63 3.17-5.95 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.48-3.43-3.65-5.78-.02-.5-.03-1-.01-1.49.15-1.61.94-3.13 2.15-4.24 1.37-1.28 3.3-1.95 5.17-1.79.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.27 1.77-.14.65-.1 1.4.27 1.99.59 1.01 1.76 1.65 2.93 1.57.78-.01 1.53-.39 2.01-1.01.5-.66.72-1.47.69-2.29.03-3.96.02-7.92.03-11.88.01-.09.01-.18.02-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.63 3.17-5.95 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.48-3.43-3.65-5.78-.02-.5-.03-1-.01-1.49.15-1.61.94-3.13 2.15-4.24 1.37-1.28 3.3-1.95 5.17-1.79.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.27 1.77-.14.65-.1 1.4.27 1.99.59 1.01 1.76 1.65 2.93 1.57.78-.01 1.53-.39 2.01-1.01.5-.66.72-1.47.69-2.29.03-3.96.02-7.92.03-11.88.01-.09.01-.18.02-.27z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-whatsapp::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.53 0 .2 5.33.2 11.88c0 2.09.55 4.13 1.59 5.92L.1 24l6.34-1.66a11.87 11.87 0 0 0 5.64 1.43h.01c6.55 0 11.88-5.33 11.88-11.88 0-3.18-1.24-6.16-3.45-8.41zM12.09 21.77h-.01a9.88 9.88 0 0 1-5.04-1.38l-.36-.21-3.76.99 1-3.67-.23-.38a9.87 9.87 0 0 1-1.51-5.24C2.18 6.43 6.62 1.99 12.08 1.99c2.65 0 5.14 1.03 7.01 2.9a9.86 9.86 0 0 1 2.9 7.01c0 5.46-4.44 9.87-9.9 9.87zm5.42-7.39c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.47-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.49s1.07 2.89 1.22 3.09c.15.2 2.1 3.21 5.09 4.5.71.31 1.27.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.53 0 .2 5.33.2 11.88c0 2.09.55 4.13 1.59 5.92L.1 24l6.34-1.66a11.87 11.87 0 0 0 5.64 1.43h.01c6.55 0 11.88-5.33 11.88-11.88 0-3.18-1.24-6.16-3.45-8.41zM12.09 21.77h-.01a9.88 9.88 0 0 1-5.04-1.38l-.36-.21-3.76.99 1-3.67-.23-.38a9.87 9.87 0 0 1-1.51-5.24C2.18 6.43 6.62 1.99 12.08 1.99c2.65 0 5.14 1.03 7.01 2.9a9.86 9.86 0 0 1 2.9 7.01c0 5.46-4.44 9.87-9.9 9.87zm5.42-7.39c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.47-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.49s1.07 2.89 1.22 3.09c.15.2 2.1 3.21 5.09 4.5.71.31 1.27.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===================================
   Banner de Cookies RGPD
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: -400px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: bottom 0.4s ease;
    border-top: 3px solid var(--color-primary);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-banner-text h3 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: var(--color-secondary);
    color: white;
}

.cookie-btn-reject:hover {
    background: #333;
}

.cookie-btn-more {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.cookie-btn-more:hover {
    background: var(--color-primary);
    color: white;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-banner-text h3 {
        font-size: 16px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 18px 12px;
    }
    
    .cookie-banner-text h3 {
        font-size: 15px;
    }
    
    .cookie-banner-text p {
        font-size: 12px;
    }
    
    .cookie-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}
