/* Base Reset & Variables */
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #4285f4;
    --primary-transparent: rgba(26, 115, 232, 0.1);

    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #202124;
    --bg-darker: #171717;

    --text-dark: #202124;
    --text-gray: #5f6368;
    --text-light: #f8f9fa;
    --text-light-gray: #dadce0;

    --border-color: #dadce0;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-md: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --shadow-lg: 0 4px 6px 0 rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
    --shadow-xl: 0 8px 10px 0 rgba(60, 64, 67, 0.3), 0 16px 24px 12px rgba(60, 64, 67, 0.15);

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    --header-height: 4.5rem;
    --page-top-padding: calc(var(--header-height) + 2rem);
    --maintenance-height: 0px;
}

body.maintenance-active {
    --maintenance-height: 38px;
}

body.maintenance-active main[style*="padding-top"] {
    padding-top: calc(8rem + var(--maintenance-height)) !important;
}

body.maintenance-active [style*="position: sticky"][style*="top: 8rem"],
body.maintenance-active [style*="position:sticky"][style*="top:8rem"] {
    top: calc(8rem + var(--maintenance-height)) !important;
}

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
    max-width: 100vw;
}

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

main {
    overflow-x: hidden !important;
    width: 100%;
}

.main-page {
    padding-top: var(--page-top-padding) !important;
}

.section-hero-reduced {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-white {
    color: var(--text-light);
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.8);
}

/* Material Icons Styling */
.material-symbols-outlined {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.star-filled {
    color: #facc15;
    font-variation-settings: 'FILL' 1;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 178, 0.3);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(245, 247, 248, 0.85);
    /* background-light */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.maintenance-notice {
    background: #fbbf24;
    color: #000;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: var(--maintenance-height);
    overflow: hidden;
}

.maintenance-notice a {
    text-decoration: underline;
    color: inherit;
    transition: opacity 0.2s;
}

.maintenance-notice a:hover {
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--maintenance-height));
    /* Offset header */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../img/HERO_A.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 25, 35, 0.85) 0%, rgba(15, 25, 35, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text-wrapper {
    max-width: 650px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

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

/* Universal Section Styling */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-header.text-center {
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
}

/* Services */
.services {
    background-color: var(--bg-white);
}

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

.service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Advantages */
.advantages {
    background-color: #f8fafc;
    padding: 6rem 0;
}

.advantages .section-title {
    color: var(--text-dark) !important;
}

.advantages .section-desc {
    color: var(--text-gray) !important;
}

.advantages-header .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

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

.advantage-item {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 86, 178, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.advantage-icon {
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary-transparent);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.advantage-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.advantage-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery */
.gallery {
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-transparent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
}

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

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 1.5rem 0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    color: var(--primary);
}

.contact-text {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 86, 178, 0.2);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-white);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-transparent);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-about .logo-footer,
.footer-about .logo-text {
    color: white;
}

.footer-desc {
    margin: 1.5rem 0;
    max-width: 400px;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-schedule ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.fw-medium {
    font-weight: 500;
}

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

.mt-sm {
    margin-top: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 25, 35, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 10% auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalSlideIn 0.4s ease-out forwards;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    color: var(--text-gray);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Store & Products */
.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    align-items: center;
}

.product-image-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Gallery Thumbnails */
.product-gallery {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.product-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--primary);
}

.product-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.product-features .material-symbols-outlined {
    color: var(--primary);
}

.w-full {
    width: 100%;
}

/* Animations & Utilities */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-up.active {
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-left.active {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-right.active {
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 178, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 86, 178, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 178, 0);
    }
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

.form-alert {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.form-alert.success {
    background-color: #dcfce7;
    color: #166534;
}

.form-alert.error {
    background-color: #fee2e2;
    color: #991b1b;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .contact-layout {
        gap: 2rem;
    }
}

@media (max-width: 900px) {

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

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

    .contact-layout,
    .product-single-layout,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .store-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none;
    }

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

    .nav-links {
        position: absolute;
        top: calc(var(--header-height) + var(--maintenance-height));
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout,
    .product-single-grid,
    .product-features-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .product-features-grid {
        gap: 1.25rem !important;
        padding: 1.5rem !important;
    }
    
    .product-single-grid div[style*="height: 500px"] {
        height: 350px !important;
    }
    
    .product-single-grid h1 {
        font-size: 2.25rem !important;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 5% auto;
    }

    .product-single-layout {
        padding: 1.5rem;
    }

    .product-title-large {
        font-size: 2rem;
    }

    /* Mejora en fichas de productos para móvil */
    .store-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .product-card {
        border-radius: 0.75rem !important;
    }

    .product-img-wrapper {
        height: 160px !important;
    }

    .product-content {
        padding: 1rem !important;
    }

    .product-title {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        height: 2.5rem !important;
        overflow: hidden !important;
    }

    .product-desc {
        display: none !important;
    }
    
    .product-actions {
        margin-top: 1rem !important;
    }
    
    .product-actions .btn {
        padding: 0.6rem 0.5rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 600px) {

    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Mantener 2 columnas en móviles pequeños */
        gap: 0.75rem !important;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
    }
}