@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 96px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;

    background: linear-gradient(to right, rgba(0, 2, 11, 0.92) 0%, rgba(0, 2, 11, 0.92) 20%, rgba(11, 11, 11, 0.15) 100%);
}

.logo img{
    width: auto;
    height: 70px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background:
        linear-gradient(135deg,
            rgba(0, 2, 11, 0.96) 0%,
            rgba(25, 0, 0, 0.92) 62%,
            rgba(0, 0, 22, 0.8) 100%
        );
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;

}

nav a:hover {
    color: #bb0000;
}

.contactobtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #bb0000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}


.contactobtn img {
    height: 28px;
    width: auto;
}

.contactobtn:hover {
    background-color: #ff0000;
    color: #fff;
    transform: translateY(-1px);
}

.hero {
    background-image: linear-gradient(to right, rgba(0, 2, 11, 0.92) 0%, rgba(0, 2, 11, 0.92) 50%, rgba(0, 0, 0, 0.15) 100%),
    url("Images/banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.hero-content {
     padding-top: 140px; /* empuja el contenido debajo del header */
    padding-left: 70px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 50%;
    color: #fff;
    text-align: left;
}

.hero-text {
    max-width: 520px;
    color: #fff;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #bb0000;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-servi {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: #bb0000;
    color: #fff;
}

.btn-servi:hover {
    background-color: #ff0000;
}

.btn-contacto {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-contacto:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.whatsapp-icon {
    width: 20px;
    height: 24px;
}


.benefits {
    padding: 40px 40px;
    background-color: rgb(0, 2, 11, 0.92);
    text-align: center;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit1, .benefit2, .benefit3, .benefit4 {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 220px;
    padding: 20px 0;
    justify-content: center;
}

.benefit1 img, .benefit2 img, .benefit3 img, .benefit4 img {
    width: 45px;
    height: auto;
    gap: 10px;
}

.services {
    padding: 70px 40px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: rgb(255, 0, 0);
    margin: 0 0 10px;
}

.services h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;

}

.services h3 span {
    color: #ff0000;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 36px auto 0;

}

.service1, .service2, .service3, .service4, .service5, .service6 {
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service1:hover, .service2:hover, .service3:hover, .service4:hover, .service5:hover, .service6:hover {
    border-color: rgba(187, 0, 0, 0.35);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.service1 h4, .service2 h4, .service3 h4, .service4 h4, .service5 h4, .service6 h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.28;
}

.service1 p, .service2 p, .service3 p, .service4 p, .service5 p, .service6 p {
    line-height: 1.6;
    color: #333;
    margin: auto 0 0;
}

.service1 img, .service2 img, .service3 img, .service4 img, .service5 img, .service6 img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
}

.us {
    background-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 2, 11, 0.45) 20%,
            rgba(0, 2, 11, 0.88) 50%,
            rgba(0, 2, 11, 0.95) 100%
        ),
        url("Images/banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 70px;
}

/* Este contenedor ocupa todo el ancho y manda el contenido a la derecha */
.us-wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: 1400px;
    margin: 0 auto;
}

/* Esta caja es la que vive solo en la zona derecha */
.us-content {
    width: 58%;
    color: #fff;
    text-align: left;
}

.us-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff1a1a;
    margin: 0 0 12px 0;
    text-align: left;
}

.us-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px 0;
    text-align: left;
    max-width: 900px;
}

.us-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #d8d8d8;
    margin: 0 0 50px 0;
    max-width: 820px;
    text-align: left;
}

.us-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.us-feature {
    text-align: left;
}

.us-feature img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 16px;
}

.us-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.us-feature p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
    margin: 0;
}

.goals {
    padding: 25px 40px;
    background-color: rgb(180, 0, 0);
    text-align: center;
}

.goals-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.goal1, .goal2, .goal3, .goal4 {
    flex: 1;
    display: flex;
    flex-direction: column;   /* esto hace: imagen arriba, h3 debajo, p al final */
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 10px 20px;
}

.goal1 img, .goal2 img, .goal3 img, .goal4 img {
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.goal1 h3, .goal2 h3, .goal3 h3, .goal4 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    line-height: 1;
}

.goal1 p, .goal2 p, .goal3 p, .goal4 p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

/* ===== VENTAS / FORMULARIO ===== */

.contact {
    min-height: 760px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(to right,
            rgba(0, 2, 11, 0.94) 0%,
            rgba(0, 2, 11, 0.80) 44%,
            rgba(0, 2, 11, 0.25) 100%
        ),
        url("Images/inspeccion.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 70px;
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.contact-info {
    width: min(100%, 560px);
    color: #fff;
    padding: 44px;
    border-left: 5px solid #bb0000;
    background:
        linear-gradient(135deg,
            rgba(0, 2, 11, 0.96) 0%,
            rgba(25, 0, 0, 0.92) 62%,
            rgba(187, 0, 0, 0.80) 100%
        );
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.contact-info h2 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
}

.contact-info h3 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #ff2b2b;
}

.contact-info p {
    margin: 0 0 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #e1e1e1;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    padding: 15px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #bb0000;
    box-shadow: 0 0 0 4px rgba(187, 0, 0, 0.18);
}

.contact-form input.field-error,
.contact-form textarea.field-error {
    border-color: #ff1a1a;
    background-color: #fff7f7;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.22);
    animation: field-shake 0.28s ease;
}

.field-message {
    display: none;
    color: #ffd6d6;
    font-size: 12px;
    line-height: 1.4;
}

.form-field.has-error .field-message {
    display: block;
}

.contact-form button {
    border: 0;
    border-radius: 8px;
    background: #bb0000;
    color: #fff;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-success {
    min-height: 20px;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.contact-form button:hover {
    background: #ff0000;
    transform: translateY(-1px);
}

.contact-image {
    display: none;
}

@keyframes field-shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }
}

/* ===== FOOTER ===== */

.footer{
     background:
        linear-gradient(180deg,
            rgba(0, 2, 11, 0.96) 0%,
            rgba(25, 0, 0, 0.92) 70%,
            rgba(187, 0, 0, 0.80) 100%
        );
    color: #ffffff;
    padding-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container{
    max-width: 1200px;
    margin: 5px auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding: 0 40px 40px;
}

.footer-column h3{
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p{
    font-size: 15px;
    line-height: 1.8;
    color: #bfc4cc;
}

.footer-logo{
    width: 220px;
    margin-bottom: 18px;

}

.roma-logo{
    width: 170px;
    margin-bottom: 15px;
}

/* Enlaces */

.footer-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li{
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #bfc4cc;
    font-size: 15px;
}

.footer-column ul li a{
    color: #bfc4cc;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover{
    color: #d81f26;
    padding-left: 5px;
}

/* Iconos */

.footer-column ul li img{
    width: 18px;
    margin-right: 12px;
}

/* Línea inferior */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #9aa0a6;
}

@media (max-width:900px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul li{
        justify-content: center;
    }

    .social-icons{
        justify-content: center;
    }

    .footer-logo,
    .roma-logo{
        margin: 0 auto 20px;
    }
}

/* =========================
   TABLET / LAPTOP PEQUEÑA
   ========================= */
@media (max-width: 1024px) {

    header {
        padding: 24px 24px;
        gap: 20px;
    }

    .logo img {
        height: 56px;
    }

    nav ul {
        gap: 14px;
    }

    nav a {
        font-size: 13px;
    }

    .contactobtn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .contactobtn img {
        height: 24px;
    }

    .contactobtn:hover {
        transform: translateY(-50%);
    }

    /* HERO */
    .hero {
        min-height: 90vh;
        height: auto;
        background-position: center;
    }

    .hero-content {
        width: 60%;
        padding-left: 40px;
        padding-right: 24px;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .hero-text p {
        font-size: 18px;
        max-width: 520px;
    }

    .hero-buttons {
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-servi,
    .btn-contacto {
        font-size: 14px;
        padding: 12px 18px;
    }

    /* BENEFITS */
    .benefits {
        padding: 28px 24px;
    }

    .benefits-container {
        gap: 20px;
    }

    .benefit1, .benefit2, .benefit3, .benefit4 {
        padding: 10px 0;
        gap: 10px;
    }

    .benefit1 img, .benefit2 img, .benefit3 img, .benefit4 img {
        width: 38px;
    }

    /* SERVICES */
    .services {
        padding: 50px 24px;
    }

    .services h2 {
        font-size: 24px;
    }

    .services h3 {
        font-size: 32px;
    }

    .services-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .service1, .service2, .service3, .service4, .service5, .service6 {
        padding: 18px;
    }

    .service1 img, .service2 img, .service3 img, .service4 img, .service5 img, .service6 img {
        height: auto;
    }

    .service1 h4, .service2 h4, .service3 h4, .service4 h4, .service5 h4, .service6 h4 {
        font-size: 18px;
    }

    /* WHY US */
    .us {
        padding: 50px 32px;
        background-position: left center;
    }

    .us-wrapper {
        justify-content: flex-end;
    }

    .us-content {
        width: 68%;
    }

    .us-title {
        font-size: 16px;
    }

    .us-subtitle {
        font-size: 42px;
    }

    .us-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .us-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* GOALS */
    .goals {
        padding: 22px 24px;
    }

    .goals-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .goal1, .goal2, .goal3, .goal4 {
        flex: 1 1 calc(50% - 20px);
        padding: 10px;
    }

    .goal1 h3, .goal2 h3, .goal3 h3, .goal4 h3 {
        font-size: 34px;
    }

    .goal1 p, .goal2 p, .goal3 p, .goal4 p {
        font-size: 15px;
    }

    /* VENTAS */
    .contact {
        min-height: 680px;
        padding: 70px 32px;
        background-position: center;
    }

    .contact-info {
        width: min(100%, 520px);
        padding: 36px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 24px 32px;
    }
}

/* =========================
   MÓVIL GRANDE / TABLET VERTICAL
   ========================= */
@media (max-width: 768px) {

    /* HEADER */
    header {
        position: absolute;
        min-height: 86px;
        padding: 14px 16px;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0;
        background: rgba(0, 2, 11, 0.92);
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 12;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo img {
        height: 54px;
    }

    nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        width: auto;
        padding: 14px;
        border-radius: 8px;
        background: rgba(0, 2, 11, 0.96);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 11;
    }

    nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 13px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 13px;
        text-align: center;
    }

    nav li:last-child a {
        border-bottom: 0;
    }

    .contactobtn {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 8px;
    }

    .contactobtn span {
        display: none;
    }

    .contactobtn img {
        height: 24px;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        height: auto;
        background-position: center;
        padding-top: 120px;
        padding-bottom: 50px;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 2, 11, 0.88) 0%,
                rgba(0, 2, 11, 0.78) 45%,
                rgba(0, 2, 11, 0.70) 100%
            ),
            url("Images/banner.jpeg");
    }

    .hero-content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
    }

    .btn-servi,
    .btn-contacto {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        padding: 13px 18px;
    }

    /* BENEFITS */
    .benefits {
        padding: 28px 18px;
    }

    .benefits-container {
        gap: 20px;
    }

    .benefit1, .benefit2, .benefit3, .benefit4 {
        flex: 1 1 calc(50% - 20px);
        flex-direction: column;
        text-align: center;
        padding: 8px 0;
    }

    .benefit1 img, .benefit2 img, .benefit3 img, .benefit4 img {
        width: 34px;
    }

    /* SERVICES */
    .services {
        padding: 42px 18px;
    }

    .services h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .services h3 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 26px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service1, .service2, .service3, .service4, .service5, .service6 {
        padding: 16px;
        border-radius: 8px;
    }

    .service1 img, .service2 img, .service3 img, .service4 img, .service5 img, .service6 img {
        height: auto;
        border-radius: 8px;
    }

    .service1 h4, .service2 h4, .service3 h4, .service4 h4, .service5 h4, .service6 h4 {
        font-size: 18px;
        line-height: 1.3;
    }

    .service1 p, .service2 p, .service3 p, .service4 p, .service5 p, .service6 p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* WHY US */
    .us {
        padding: 42px 20px;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 2, 11, 0.72) 0%,
                rgba(0, 2, 11, 0.90) 35%,
                rgba(0, 2, 11, 0.96) 100%
            ),
            url("Images/banner.jpeg");
        background-position: center;
    }

    .us-wrapper {
        justify-content: center;
    }

    .us-content {
        width: 100%;
    }

    .us-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .us-subtitle {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .us-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .us-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .us-feature img {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }

    .us-feature h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .us-feature p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* GOALS */
    .goals {
        padding: 28px 18px;
    }

    .goals-container {
        gap: 18px;
    }

    .goal1, .goal2, .goal3, .goal4 {
        flex: 1 1 calc(50% - 18px);
        padding: 12px 8px;
    }

    .goal1 img, .goal2 img, .goal3 img, .goal4 img {
        width: 42px;
        margin-bottom: 12px;
    }

    .goal1 h3, .goal2 h3, .goal3 h3, .goal4 h3 {
        font-size: 30px;
    }

    .goal1 p, .goal2 p, .goal3 p, .goal4 p {
        font-size: 14px;
    }

    /* VENTAS */
    .contact {
        min-height: auto;
        padding: 58px 20px;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 2, 11, 0.92) 0%,
                rgba(0, 2, 11, 0.82) 42%,
                rgba(0, 2, 11, 0.66) 100%
            ),
            url("Images/inspeccion.jpeg");
    }

    .contact-container {
        justify-content: center;
    }

    .contact-info {
        padding: 28px 22px;
        border-left-width: 4px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 14px;
    }

    /* FOOTER */
    .footer {
        padding-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px 28px;
        text-align: center;
    }

    .footer-column ul li {
        justify-content: center;
    }

    .footer-logo {
        width: 180px;
        margin: 0 auto 16px;
    }

    .roma-logo {
        width: 140px;
        margin: 0 auto 16px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-column p,
    .footer-column ul li,
    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 16px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    html {
        scroll-padding-top: 82px;
    }

    section {
        scroll-margin-top: 82px;
    }

    header {
        min-height: 78px;
        padding: 12px;
    }

    .menu-toggle,
    .contactobtn {
        width: 38px;
        height: 38px;
    }

    .menu-toggle {
        left: 12px;
    }

    .contactobtn {
        right: 12px;
    }

    .logo img {
        max-width: 150px;
        height: 46px;
        object-fit: contain;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .us-features {
        grid-template-columns: 1fr;
    }

    .goal1, .goal2, .goal3, .goal4 {
        flex: 1 1 100%;
    }

    .contact {
        padding: 46px 14px;
    }

    .contact-info {
        padding: 24px 18px;
    }
}

