/* =============================================
   DIESEL TRUCK CENTER - STYLES
   Inspirado en diseño moderno/industrial
   Colores: Fondo oscuro, acento rojo, tipografía moderna
   ============================================= */

/* ========== VARIABLES GLOBALES ========== */
:root {
    --color-dark: #0a0a0a;
    --color-dark-gray: #111111;
    --color-gray: #1a1a1a;
    --color-light-gray: #2a2a2a;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-red: #e63946;
    --color-red-dark: #c1121f;
    --color-red-light: #ff6b6b;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --shadow-light: 0 5px 20px rgba(0,0,0,0.15);
}

/* ========== RESET Y BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TIPOGRAFÍA ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag.white {
    color: var(--color-red);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--color-white);
}

.section-header p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HEADER Y NAVEGACIÓN ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

#logo img {
    height: 90px;
    width: auto;
}


#nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

#nav ul li a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

#nav ul li a:hover,
#nav ul li a.active {
    color: var(--color-red);
}

/* Burger menu - oculto en desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-gray) 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-content .highlight {
    color: var(--color-red);
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--color-red);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--color-red);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: var(--color-gray);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #bbb;
    font-weight: 500;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-red);
}

.service-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--color-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--color-red-light);
}

/* ========== VALUE SECTION ========== */
.value-section {
    padding: 5rem 0;
    background: var(--color-dark-gray);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-text h2 {
    color: var(--color-white);
    font-size: 2.5rem;
}

.value-text p {
    color: #ccc;
    margin-bottom: 2rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-feature i {
    color: var(--color-red);
    font-size: 1.2rem;
}

.value-feature span {
    color: var(--color-white);
}

.value-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ========== CATÁLOGO SECTION ========== */
.catalogo-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.catalogo-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--color-gray);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    color: var(--color-white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-red);
    color: var(--color-white);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--color-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-code {
    color: var(--color-red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.catalogo-footer {
    text-align: center;
    margin-top: 3rem;
}

.catalogo-note {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 5rem 0;
    background: var(--color-dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-years {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-red);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.years-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.years-text {
    font-size: 0.8rem;
    color: var(--color-white);
}

.about-content h2 {
    color: var(--color-white);
}

.about-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    color: var(--color-red);
    font-size: 1.2rem;
    width: 30px;
}

.about-feature strong {
    display: block;
    color: var(--color-white);
    font-size: 0.9rem;
}

.about-feature span {
    font-size: 0.85rem;
    color: #aaa;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-quote i {
    color: var(--color-red);
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--color-white);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.testimonial-author span {
    color: #aaa;
    font-size: 0.8rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 5rem 0;
    background: var(--color-dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--color-white);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail i {
    color: var(--color-red);
    font-size: 1.2rem;
    width: 30px;
    margin-top: 0.2rem;
}

.contact-detail h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: #aaa;
    margin-bottom: 0;
}

.contact-form {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--color-light-gray);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--color-white);
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-note {
    font-size: 0.75rem;
    color: #777;
    text-align: center;
    margin-top: 1rem;
}

/* ========== FOOTER ========== */
#footer {
    background: var(--color-gray);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.85rem;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-links ul li {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--color-red);
}

.footer-social h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-red);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #777;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-red);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-container { gap: 2rem; }
    .services-grid,
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .burger-menu {
        display: flex;
    }
    
    #nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--color-white);
        flex-direction: column;
        width: 250px;
        height: calc(100vh - 70px);
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    #nav ul.active {
        right: 0;
    }
    
    #nav ul li a {
        color: var(--color-dark);
    }
    
    .hero-container,
    .value-content,
    .about-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .catalogo-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        text-align: center;
    }
    
    .about-years {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}

/* ========== ANIMACIONES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.product-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========== CONTACTO SIN FORMULARIO ========== */
.contact-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-buttons-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 20px;
}

.contact-buttons-card h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    background: var(--color-light-gray);
}

.contact-btn i {
    font-size: 1.8rem;
    width: 45px;
    text-align: center;
}

.contact-btn strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-btn span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-btn.phone i { color: #4caf50; }
.contact-btn.whatsapp i { color: #25d366; }
.contact-btn.email i { color: var(--color-red); }

.contact-btn.phone:hover { background: #4caf50; }
.contact-btn.whatsapp:hover { background: #25d366; }
.contact-btn.email:hover { background: var(--color-red); }

.contact-btn:hover i,
.contact-btn:hover strong,
.contact-btn:hover span {
    color: white;
}

.contact-visit {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-visit p {
    color: #aaa;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .contact-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =============================================
   CATÁLOGO FILTRABLE - DIESEL TRUCK CENTER
   (Agregar al final del archivo styles.css)
   ============================================= */

.catalogo-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--color-dark);
}

.catalogo-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-gray) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.catalogo-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.catalogo-header p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.filtro-botones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.btn-filtro {
    background: var(--color-gray);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    color: var(--color-white);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-filtro:hover,
.btn-filtro.active {
    background: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0 3rem;
}

.producto-card {
    background: var(--color-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.producto-card.hidden {
    display: none;
}

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

.producto-imagen {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.producto-info {
    padding: 1.5rem;
}

.producto-titulo {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.producto-codigo {
    color: var(--color-red);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.producto-descripcion {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.producto-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.producto-btn:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.sin-resultados {
    text-align: center;
    padding: 3rem;
    color: #aaa;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

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

.producto-card {
    animation: fadeInUp 0.4s ease forwards;
}

@media (max-width: 768px) {
    .catalogo-header h1 {
        font-size: 2rem;
    }
    .catalogo-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    .filtro-botones {
        gap: 0.7rem;
    }
    .btn-filtro {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* =============================================
   TEXTO SIEMPRE BLANCO - SECCIÓN CONTACTO
   ============================================= */

/* Todos los textos dentro de la tarjeta de contacto */
.contact-buttons-card,
.contact-buttons-card h3,
.contact-buttons-card p,
.contact-buttons-card strong,
.contact-buttons-card span {
    color: var(--color-white) !important;
}

/* Textos de los botones en hover - siempre blanco */
.contact-btn:hover,
.contact-btn:hover strong,
.contact-btn:hover span,
.contact-btn:hover i {
    color: var(--color-white) !important;
}

/* El texto del botón "Ver en Google Maps" */
.contact-visit .btn-outline,
.contact-visit .btn-outline:hover {
    color: var(--color-white) !important;
}

/* El párrafo "¿Prefieres visitarnos?" */
.contact-visit p {
    color: var(--color-white) !important;
}