/* 
========================================== 
    ESTILOS GLOBALES
    Desarrollado por GAELSolutions
==========================================
*/


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

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

:root {

    /* === COLORES BASE === */

    --color-bg-main: #F1F5F9;
    /* fondo general claro */
    --color-bg-section: #FFFFFF;
    /* secciones blancas */
    --color-bg-dark: #0F172A;
    /* hero / footer */

    /* === COLORES PRINCIPALES === */

    --color-primary: #F97316;
    /* naranja industrial */
    --color-primary-hover: #EA580C;

    --color-secondary: #334155;
    /* gris acero */

    /* === TEXTOS === */

    --color-text-dark: #1E293B;
    --color-text-light: #F8FAFC;
    --color-text-muted: #64748B;

    /* === BORDES Y DETALLES === */

    --color-border: #E2E8F0;
    --color-card: #FFFFFF;

    /* === SOMBRAS === */

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);

    /* === ARQUITECTURA === */
    --max-width: 1200px;

}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 20px 0;
}

/* Architecture/Layout */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;

    /* Tipography */

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

header,
footer {
    width: 100%;
}

main {
    flex: 1;
    width: 100%;
    margin: 0 auto;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

h6 {
    font-size: clamp(0.75rem, 1vw, 1rem);
}

p {
    margin-bottom: 1em;
}



/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Lists */
ul,
ol {
    list-style: none;
}

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

/* Buttons */
button,
input[type="button"],
input[type="submit"] {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

/* Forms */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

textarea {
    resize: vertical;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Styles per section */

/* HEADER */

header {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;

    transition: box-shadow 0.3s ease;
}

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

.logo-container h2 {
    font-weight: bold;

    background-image: linear-gradient(90deg,
            var(--color-text-light),
            var(--color-primary),
            var(--color-text-light));

    background-size: 200% auto;
    background-position: 0% center;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    transition: background-position 0.4s ease;
}

.logo-container h2:hover {
    background-position: 100% center;
    cursor: pointer;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--color-text-light);
    font-weight: 500;
}

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

.nav-cta {
    background: var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    color: white !important;
    font-weight: 600;
}

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

#hero,
#how,
#products,
#benefits,
#how,
#contact {
    scroll-margin-top: 87px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Animación a X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
/* HERO */
.hero {
    position: relative;
    min-height: 90vh;

    display: flex;
    align-items: center;

    background-image: url("/assets/images/hero-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
    max-width: 700px;
    padding: 2rem;
    ;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
}

.hero-name {
    color: var(--color-primary);
}

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

.btn-hero-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-hero-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-text-light);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
}

.button-with-icon {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    padding: 0.75rem 1.2rem;

    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;

    outline: none;
    user-select: none;
    cursor: pointer;
    position: relative;

    background: var(--color-primary);
    color: var(--color-text-light);

    box-shadow:
        inset 0 20px 20px -15px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 4px 0 var(--color-primary-hover),
        0 6px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.2s ease-in-out;
}

.button-with-icon:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);

    box-shadow:
        inset 0 20px 20px -15px rgba(255, 255, 255, 0.15),
        0 6px 0 #c2410c,
        0 8px 18px rgba(0, 0, 0, 0.25);
}

.button-with-icon:active {
    box-shadow:
        inset 0 5px 10px rgba(0, 0, 0, 0.2),
        0 2px 0 var(--color-primary-hover);
}

.button-with-icon .icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.button-with-icon:hover .icon {
    transform: translateX(5px);
}

.button-with-icon .text {
    transition: transform 0.3s ease;
}

.button-with-icon:hover .text {
    transform: translateX(2px);
}

/* ABOUT */
.about-us {
    background-color: var(--color-bg-section);
}

.about-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0;
}

.about-us-container h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-us-container p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* PRODUCTS */
.products {
    background-color: var(--color-bg-section);
}

.products::before {
    /* linea que separa */
    content: "";
    display: block;
    width: 300px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 2rem;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.product-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.products-cta {
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-cta h3 {
    color: var(--color-text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    ;
}

/* DESCARGAR FICHA TECNICA */
.products-button-robust {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 240px;
    height: 48px;

    border: 1px solid var(--color-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;

    outline: none;
    user-select: none;
    cursor: pointer;
    position: relative;

    background: var(--color-primary);
    color: var(--color-text-light);

    box-shadow:
        inset 0 20px 20px -15px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 4px 0 var(--color-primary-hover),
        0 6px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.2s ease-in-out;
}

/* efecto presión */
.products-button-robust:active {
    transform: translateY(3px);
    box-shadow:
        inset 0 20px 20px -15px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 2px 0 var(--color-primary-hover),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* texto */
.products-button-robust .btn-text {
    position: absolute;
    transition: opacity 0.2s ease;
}

/* iconos */
.products-button-robust .btn-icon {
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover → icono descarga */
.products-button-robust:hover .btn-text {
    opacity: 0;
}

.products-button-robust:hover .download-icon {
    opacity: 1;
    transform: scale(1.05);
}

/* Click → check */
.products-button-robust.active .btn-text,
.products-button-robust.active .download-icon {
    opacity: 0;
}

.products-button-robust.active .check-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* BENEFITS */
.benefits {
    position: relative;
    background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
}

.benefits-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0;
}

.benefits-container h2 {
    color: var(--color-text-light);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
}

.benefits-grid .benefit-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-grid .benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);

}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* RESULTS */
.results {
    background-color: var(--color-bg-section);
}

.results-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.results-numbers {
    flex: 1;
    min-width: 300px;
}

.results-numbers h2 {
    color: var(--color-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.results-numbers ul {
    list-style: none;
    padding-left: 0;
}

.results-numbers li {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.results-numbers li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.results-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.results-image {
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* HOW */
.how-section {
    background: linear-gradient(180deg, #0c1629 0%, #0a1220 100%);
    padding: 100px 20px;
    color: white;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-container h2 {
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.how-card {
    background: #111c33;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-primary);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    background: #142241;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.how-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b5c3db;
}

/* TESTIMONIALS */
.testimonials {
    background-color: #f4f6f8;
    padding: 5rem 1rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slider {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card strong {
    color: var(--color-primary);
}

/* CTA */
.CTA {
    background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-light);
    padding: 4rem 1rem;
    text-align: center;
}

.CTA-container {
    max-width: 700px;
    margin: 0 auto;
}

.CTA-container h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.CTA-container p {
    font-size: 1.5em;
    margin-bottom: 2rem;
}

.CTA-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-CTA-primary {
    background: white;
    color: #ff6a00;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-CTA-primary:hover {
    background: #f3f3f3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-CTA-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-CTA-secondary:hover {
    background: white;
    color: #ff6a00;
    transform: translateY(-3px);
}

.btn-CTA-primary,
.btn-CTA-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-CTA-primary:active,
.btn-CTA-secondary:active {
    transform: scale(0.97);
}

/* CONTACT */
.contact {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f1f3f5 0%, #e4e7ea 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.contact h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--color-primary);
    margin: 15px auto 0;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: stretch;
}

.map-container {
    flex: 1 1 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(30%) contrast(105%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.info-container {
    flex: 1 1 400px;
    background: white;
    padding: 40px;
    border-left: 6px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.info-container h5 {
    margin-bottom: 30px;
    font-weight: 600;
}

.info-container ul {
    list-style: none;
    padding: 0;
}

.info-container li {
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-industrial {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-industrial:hover {
    transform: translateY(-3px);
    background: #e96f00;
}

/* FOOTER */
footer {
    background: var(--color-bg-dark);
    color: white;
    border-top: 4px solid var(--color-primary);
    padding: 70px 20px 0 20px;
    font-family: 'Inter', sans-serif;
}

.footer-body {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer-social .social-title {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-social a {
    color: white;
    font-size: 0.75rem;
    margin-bottom: 10px;
    transition: 0.3s;
    align-items: center;
    display: flex;
    gap: 12px;
}

.footer-social a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}
.footer-social i{
    font-size: 1.1rem;
    width: 20px;                 
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.developer-name {
    color: var(--color-primary);
}

/* =========================================
   RESPONSIVE
========================================= */

/* ---------- 1200px ---------- */
@media (max-width: 1200px) {

    .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .results-image {
        height: 400px;
    }

}


/* ---------- 992px (Tablet) ---------- */
@media (max-width: 992px) {

    /* HEADER */
    header {
        padding: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    /* HERO */
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    /* ABOUT */
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    /* RESULTS */
    .results-container {
        flex-direction: column;
    }

    .results-image {
        height: 350px;
    }

    /* HOW */
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CONTACT */
    .contact-container {
        flex-direction: column;
    }

    .map-container iframe {
        min-height: 350px;
    }

}


/* ---------- 768px (Mobile) ---------- */
@media (max-width: 768px) {

    /* NAV */
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 87px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 87px);
        background: var(--color-bg-dark);
        transition: 0.3s ease;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* HERO */
    .hero {
        min-height: 75vh;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* PRODUCTS */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* BENEFITS */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* HOW */
    .how-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .CTA-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* CONTACT */
    .info-container {
        padding: 30px;
    }

    /* FOOTER */
    .footer-body {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        align-items: center;
    }

}


/* ---------- 480px (Mobile chico) ---------- */
@media (max-width: 480px) {

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .info-container {
        padding: 20px;
    }

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

    .products-button-robust {
        min-width: 100%;
    }

}