@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Oswald:wght@700&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

/* =========================================
   VARIABLES Y ESTILOS BASE
   ========================================= */
:root {
    --green-dark: #134e17;
    --green-light: #1e7d22;
    --brick: #d35400;
    --white: #ffffff;
    --text-light: #f4f4f4;
    --bg-light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 110px;
    /* Espacio para el header fijo */
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-padding-top: 120px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   HEADER & NAVBAR (FIXED)
   ========================================= */
header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--brick);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 85px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links ul li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links ul li a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--brick);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links ul li a:not(.btn-contact):hover::after {
    width: 100%;
}

.nav-links ul li a:not(.btn-contact):hover {
    color: var(--brick);
}

.nav-links ul li a.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brick);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: bold;
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    transition: var(--transition);
}

.nav-links ul li a.btn-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.nav-links ul li a.btn-contact:hover {
    background-color: #ff6a00 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.6);
}

/* MENÚ MÓVIL */
#nav-check {
    display: none;
}

.nav-toggler {
    display: none;
    cursor: pointer;
}

@media (max-width: 850px) {
    .nav-toggler {
        display: block;
    }

    .nav-toggler span,
    .nav-toggler span::before,
    .nav-toggler span::after {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--white);
        position: relative;
        transition: var(--transition);
    }

    .nav-toggler span::before {
        content: "";
        top: -10px;
    }

    .nav-toggler span::after {
        content: "";
        top: 7px;
    }

    .nav-links {
        position: fixed;
        top: 109px;
        left: 0;
        width: 100%;
        background: var(--green-dark);
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links ul {
        flex-direction: column;
        padding: 30px 0;
    }

    .nav-links ul li {
        margin: 15px 0;
        margin-left: 0;
    }

    #nav-check:checked~.nav-links {
        height: calc(100vh - 109px);
        border-top: 2px solid var(--brick);
    }

    #nav-check:checked~.nav-toggler span {
        background: transparent;
    }

    #nav-check:checked~.nav-toggler span::before {
        transform: rotate(45deg);
        top: 0;
    }

    #nav-check:checked~.nav-toggler span::after {
        transform: rotate(-45deg);
        top: -3px;
    }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   COMPONENTES REUTILIZABLES
   ========================================= */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f4f6f4;
    background-image: radial-gradient(rgba(19, 78, 23, 0.08) 2px, transparent 2px);
    background-size: 30px 30px;
}

.bg-dark-green {
    background-color: var(--green-dark);
    color: white;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--green-dark);
}

.bg-dark-green .section-title {
    color: white;
}

.text-center {
    text-align: center;
}

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/vany.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-floating {
    background-color: var(--brick);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-floating::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.btn-floating:hover {
    background-color: var(--white);
    color: var(--brick);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.6);
}

/* =========================================
   SERVICES PREVIEW (HOME)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--brick);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--brick);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* =========================================
   EXPANSION SECTIONS (FEATURED)
   ========================================= */
.featured-services-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--green-dark);
}

.featured-list {
    list-style: none;
    margin: 30px 0;
}

.featured-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.featured-list i {
    color: var(--brick);
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .featured-services-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================================
   VIDEO & ABOUT SUMMARY INTEGRATION
   ========================================= */
.about-summary-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.about-summary-video {
    width: 260px;
    /* Optimal width for vertical (portrait) videos */
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #000;
    line-height: 0;
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.featured-video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.95;
    transition: var(--transition);
}

.video-container:hover .featured-video {
    opacity: 1;
}

.desktop-only {
    display: inline;
}

@media (max-width: 900px) {
    .about-summary-wrap {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-summary-video {
        order: 2; /* Video below on mobile */
        margin: 0 auto;
        width: 100%;
        max-width: 240px; /* Constraints ensure no overflow */
    }

    .about-summary-content {
        order: 1; /* Content above on mobile */
    }

    .about-summary-content h2 {
        text-align: center !important;
        font-size: 2rem !important; /* Smaller title on mobile */
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .desktop-only {
        display: none;
        /* Hide extra text on mobile */
    }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-page {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
}

.about-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--green-dark);
}

.about-features i {
    color: var(--brick);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* INFO GRID (Mission, Vision, Values) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 2px solid transparent;
    transform-style: preserve-3d;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--brick);
    box-shadow: 0 20px 45px rgba(211, 84, 0, 0.2);
}

.info-card i {
    font-size: 3.5rem;
    color: var(--brick);
    margin-bottom: 25px;
    display: inline-block;
    transform: translateZ(40px);
}

.info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

/* =========================================
   WHY US (HOME)
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
    transform-style: preserve-3d;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--brick);
    box-shadow: 0 15px 35px rgba(211, 84, 0, 0.2);
}

.why-icon {
    font-size: 3rem;
    color: var(--brick);
    margin-bottom: 20px;
    transform: translateZ(30px);
    display: inline-block;
}

.why-card h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

/* =========================================
   LOCATION & FOOTER
   ========================================= */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: white;
}

.location-card {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-wrapper {
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 850px) {
    .location-section {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 50px 30px;
        text-align: center;
    }
}

.main-footer {
    background-color: #111;
    color: #999;
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.footer-logo {
    height: 95px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Hace que el logo oscuro se vuelva blanco puro */
}

.footer-nav h3,
.footer-contact h3 {
    color: white;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav ul li a:hover {
    color: var(--brick);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 80px;
    padding-top: 30px;
    font-size: 0.85rem;
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.floating-contact-wrap {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1001;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.f-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.f-btn:hover {
    transform: scale(1.15) rotate(5deg);
}

.f-email {
    background-color: #ea4335;
}

.f-facebook {
    background-color: #1877f2;
}

.f-whatsapp {
    background-color: #25d366;
    animation: pulseGlow 2s infinite;
}

/* SERVICE PAGE ZIG-ZAG */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-text {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.service-text:hover {
    border-color: var(--brick);
    box-shadow: 0 20px 50px rgba(211, 84, 0, 0.15);
}

.service-text h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--green-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-text p {
    transform: translateZ(20px);
    margin-bottom: 25px;
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even) .service-text {
    direction: ltr;
}

.service-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-block:hover .service-image img {
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .service-block {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

/* =========================================
   HERO SECTIONS FOR SUBPAGES
   ========================================= */
.page-hero {
    height: 40vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-bottom: 80px;
}

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/imagen2 (2).jpg');
    background-size: cover;
    background-position: center;
}

.hero-services {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/imagen1 (1).jpg');
}

.hero-gallery {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/imagen4 (1).jpg');
}

.hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagenes/imagen2 (3).jpg');
}

/* =========================================
   SERVICES PAGE STYLES
   ========================================= */
.service-features {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
    transform: translateZ(25px);
}

.service-features span {
    background: var(--brick);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding-bottom: 100px;
}

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */
.gallery-container {
    padding-bottom: 100px;
}

.gallery-group {
    margin-bottom: 50px;
}

.gallery-group-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.05);
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(211, 84, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--brick);
}

/* LIGHTBOX (Zoom de imágenes) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active img {
    transform: scale(1);
}

.stylized-line {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--brick), transparent);
    margin: 60px 0;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.masonry-green-card {
    background: var(--green-dark);
    padding: 50px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.masonry-green-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    margin-bottom: 30px;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.input-group input,
.input-group textarea {
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--brick);
    background: white;
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.5);
}

.btn-submit {
    background: var(--brick);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.btn-submit:hover {
    background: #ff6a00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.6);
}

.contact-info-column {
    display: flex;
    flex-direction: column;
}

.side-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 30px;
}

.info-bubbles-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-bubble {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--green-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-bubble:hover .icon-circle {
    background: var(--brick);
    transform: scale(1.1);
}

.contact-map-wrapper {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Payment Section */
.payment-methods-section {
    padding-bottom: 100px;
}

.payment-card-floater {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.payment-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.payment-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.payment-box {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: var(--transition);
}

.payment-box:hover {
    border-color: var(--brick);
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 3rem;
    color: var(--brick);
    margin-bottom: 15px;
}

.payment-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Centrado de botones y espaciado en móvil */
    /* Espaciado del Hero en móvil para evitar que esté pegado */
    .hero {
        height: auto;
        min-height: 600px;
        padding: 140px 0 100px;
    }

    .hero-content,
    .services-cta,
    .service-text,
    .featured-content,
    .text-center,
    .about-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .btn-floating,
    .btn-contact,
    .btn-small {
        margin: 15px auto !important;
        display: inline-flex !important;
        justify-content: center;
    }

    .service-features {
        justify-content: center;
    }

    /* Ajuste de márgenes para que no estén pegados */
    .section-padding {
        padding: 70px 0;
    }

    .service-block {
        margin-bottom: 70px;
        gap: 30px;
    }

    .service-text {
        padding: 30px 20px;
        width: 100%;
    }

    .btn-submit {
        margin-top: 10px;
    }
}