:root {
    --primary: #ffffff;
    --secondary: #1a1a1a;
    --accent: #ffcc00; /* Amarillo vibrante */
    --royal-blue: #0041C2; /* Azul Rey fundamental */
    --royal-blue-dark: #002D86;
    --text-dark: #111111;
    --text-muted: #4b5563;
    --bg-light: #f3f4f6;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-padding: clamp(1rem, 5vw, 5rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navegación Liquid Glass - Blanco Denso */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #ffffff; /* Blanco sólido al inicio */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Curva de velocidad más fluida */
    backface-visibility: hidden;
    transform: translateZ(0); /* Forzar aceleración GPU */
}

/* Efecto Liquid Glass al bajar el scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.8rem 5%; /* Se hace un poco más pequeño al bajar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo img {
    height: 60px; /* Se encoge al bajar */
}

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

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.logo-text .taller {
    color: #000;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.logo-text .automotriz {
    background: var(--royal-blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--royal-blue);
    transition: var(--transition);
}

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

.burger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Rediseño de la Sección Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 900px;
    background: url('../img/herofondo.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}



@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
        padding-bottom: 50px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}



.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 120px 5% 50px; /* Aumentado el padding superior */
}


.hero-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-text {
    max-width: 800px;
}


.hero-mechanic {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mechanic-img {
    height: 85%;
    width: auto;
    object-fit: contain;
}

.hero-content-new {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}




.main-title {
    margin-bottom: 20px;
    position: relative;
}

.blue-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    width: 800px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.6) 0%, rgba(0, 102, 255, 0) 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.blue-flare::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.9), transparent);
    transform: translateY(-50%) rotate(-2deg);
    filter: blur(1px);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.8);
}

.blue-flare::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: white;
    opacity: 0.5;
    filter: blur(1px);
    transform: translateY(-50%) rotate(-1deg);
}

.italic-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}



.yellow-text {
    color: var(--accent);
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 300;
    color: #fff;
}

.yellow-highlight {
    color: var(--accent);
    font-weight: 600;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    color: #000;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: var(--transition);
    width: fit-content;
}

.btn-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

.hero-info-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent);
}

.info-card-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.info-card-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}








.bottom-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent) !important;
}


.card-text {
    display: flex;
    flex-direction: column;
}



.card-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.card-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.4;
}





/* Ajuste para pantallas medianas (Laptops) */
@media (max-width: 1100px) {
    .hero-bottom-cards {
        max-width: 95%;
        overflow-x: auto; /* Permite scroll horizontal si no caben */
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    .bottom-card {
        flex: 0 0 auto;
        min-width: 220px;
    }
}


.scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Responsividad Hero */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content-new {
        text-align: center;
        padding-left: 0;
    }

    .hero-bottom-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        bottom: 30px;
        padding: 20px;
        position: relative; /* Cambia a relativo para que no flote sobre el contenido si es muy largo */
        margin-top: 50px;
        transform: none;
        left: auto;
        width: 100%;
    }

    .bottom-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 10px 0;
    }

    .bottom-card:nth-child(even) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .bottom-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .italic-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-bottom-cards {
        grid-template-columns: 1fr;
    }

    .bottom-card:last-child {
        border-bottom: none;
    }
}

/* Secciones Generales */
section {
    padding: 100px 8%;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 50px;
}

.bg-light-x {
    background: #fdfdfd !important;
}

.bg-white {
    background: #fff !important;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #34C759;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-text {
    color: #666;
    margin-bottom: 30px;
}

/* Sección de Servicios */
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    align-items: stretch;
}


/* Ajustes de responsividad */
@media (max-width: 1200px) {
    section { padding: 80px var(--container-padding); }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 columna en celulares */
    }
    
    .navbar {
        padding: 0.8rem 5%;
    }

    .logo img {
        height: 60px;
    }

    .navbar.scrolled .logo img {
        height: 50px;
    }
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--royal-blue);
}


/* Contenedores de Iconos Estilo iOS (Squircle) */
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px; /* Aproximación a Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    background: none;
    box-shadow: none;
    width: auto;
    height: auto;
    line-height: normal;
}

/* Degradados Inspirados en iOS */
.icon-blue { background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark)); }
.icon-orange { background: linear-gradient(135deg, #FF9500, #FF5E00); }
.icon-red { background: linear-gradient(135deg, #FF3B30, #D70015); }
.icon-yellow { background: linear-gradient(135deg, #FFCC00, #FFB300); }
.icon-indigo { background: linear-gradient(135deg, #5856D6, #3634A3); }
.icon-green { background: linear-gradient(135deg, #34C759, #248A3D); }
.icon-teal { background: linear-gradient(135deg, #5AC8FA, #0071A4); }
.icon-pink { background: linear-gradient(135deg, #FF2D55, #D30F3F); }

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}



.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1; /* Esto empuja la lista hacia abajo para alinearla */
}


.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-list li i {
    color: #34C759; /* Verde de éxito estilo iOS */
    font-size: 1rem;
}

/* Sección Sobre Nosotros */
.about {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 30px 30px 60px var(--shadow-dark);
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Sección de Contacto Refinada */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #000;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #000;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Estilos del Formulario */
.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    color: #aaa;
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: #f8f9fa;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    resize: none; /* Desactiva el cambio de tamaño manual */
}

.input-wrapper input:focus, .input-wrapper textarea:focus {
    background: #fff;
    border-color: var(--royal-blue);
    outline: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.input-wrapper input:focus + i, .input-wrapper textarea:focus + i {
    color: var(--royal-blue);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--royal-blue);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 65, 194, 0.2);
}

.btn-submit:hover {
    background: var(--royal-blue-dark);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 45, 134, 0.4);
}

/* Sección de Características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Rediseño del Pie de Página - Versión Clara */
.main-footer {
    background: #f8f9fa; /* Gris muy claro para resaltar el logo */
    color: #333;
    padding: 80px 10% 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 2.5rem; /* Tamaño optimizado */
    font-weight: 800;
    margin-bottom: 25px;
    color: #000; /* Texto del logo en negro */
}

.footer-logo img {
    height: 75px; /* Tamaño equilibrado */
    width: auto;
}

.footer-logo span {
    color: var(--royal-blue);
}

.footer-content p {
    max-width: 500px;
    color: #666;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.05);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
}

/* Sección de Diferenciadores (Features) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Sección de Preguntas Frecuentes (FAQ) */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question h3 {
    font-size: 1.15rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-question i {
    font-size: 1rem;
    color: #999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-answer p {
    padding: 0 35px 30px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active {
    border-color: var(--royal-blue);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--royal-blue);
}

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

/* Footer y Redes Sociales */
.main-footer {
    background: #111111;
    color: #fff;
    padding: 100px 8% 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-content p {
    max-width: 500px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 65, 194, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none; /* Quitar subrayado */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    color: #fff;
    text-decoration: none;
}


/* Media Queries */
@media (max-width: 1024px) {
    section { padding: 80px 6%; }
    .hero-container { padding: 0 6%; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-content-new { text-align: center; }
    .btn-yellow { margin: 0 auto; }
}

