:root {
    --primary-color: #ff6b00;
    --secondary-color: #1a1a2e;
    --dark-color: #0f0f1a;
    --light-color: #f5f5f5;
    --text-color: #333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

a {
    transition: all 0.3s ease;
}

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

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* --- ESTILOS BASE (Móviles) --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0; /* Espaciado inicial del menú */
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.logo img {
    height: 45px; /* Tamaño cómodo para celular */
    width: auto;
    display: block;
    transition: height 0.3s ease; /* Hace que el encogimiento sea suave */
}

/* --- COMPUTADORAS (Pantallas grandes) --- */
@media (min-width: 992px) {
    .main-nav {
        padding: 20px 0; /* Menú más amplio visualmente al inicio */
    }
    
    .logo img {
        height: 90px; /* Logo grande y vistoso cuando estás arriba del todo */
    }

    /* --- EFECTO CUANDO SE HACE SCROLL --- */
    /* Cuando el JS activa esta clase, el menú y el logo se encogen suavemente */
    .main-nav.scroll-active {
        padding: 10px 0; /* Reduce el grosor de la barra de navegación */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Tip: añade una sombra sutil al flotar */
    }

    .main-nav.scroll-active .logo img {
        height: 55px; /* El logo se reduce para no estorbar la lectura */
    }
}

.top-bar {
    background: var(--dark-color);
    padding: 10px 0;
    color: #fff;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a,
.top-bar span {
    color: #fff;
    text-decoration: none;
}

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

.top-bar i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
}

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

.main-nav {
    background: var(--secondary-color);
    padding: 15px 0;
}

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

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

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

.header.scrolled .main-nav {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* LAYOUT */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HERO */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.creandotusitioweb.com/herreriahive/images/soldandohero.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 120px;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
}

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 18px;
    border: none;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 22px;
}

/* FEATURES */

.features {
    background: var(--secondary-color);
    padding: 30px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

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

.feature-item {
    padding: 30px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* SERVICES */

.services {
    padding: 100px 0;
    background: var(--light-color);
}

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

.service-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.service-card a:hover {
    color: #e05f00;
}

/* GALLERY */

.gallery {
    padding: 50px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    background: #fff;
}

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

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

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px 90px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 30px;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3010;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3010;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ABOUT */

.about {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* CTA */

.cta {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('https://www.creandotusitioweb.com/herreriahive/images/puertayventana.jpg') center/cover fixed;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 18px;
}

/* STATS */

.stats {
    background: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #fff;
}

.stat-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.stat-item p {
    font-size: 16px;
    text-transform: uppercase;
}

/* TESTIMONIALS */

.testimonials {
    padding: 100px 0;
    background: var(--light-color);
}

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

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.testimonial-stars {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-stars i {
    margin-right: 5px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

/* CONTACTO */

.contact {
    padding: 100px 0 50px;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    color: #666;
    font-size: 16px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.schedule-item {
    margin-bottom: 50px;
}

.whatsapp-contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 22px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    margin-bottom: 50px;
}

.whatsapp-contact-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1a8c47 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-contact-btn i {
    margin-right: 15px;
    font-size: 32px;
}

/* Reducir el espacio de separación entre Contacto y el Mapa */

/* 1. Recortamos el padding inferior de la sección de contacto */
.contact {
    padding-bottom: 20px !important; 
}

/* 2. Recortamos el padding superior de la sección del mapa */
.map-location {
    padding-top: 10px !important;
}

/* 3. Ajustamos el título de la ubicación para que no empuje hacia arriba */
.map-location .section-title {
    margin-top: 0 !important;
    margin-bottom: 15px; /* Controla la separación con el mapa de abajo */
}

/* MAPA */

.map-location {
    padding: 50px 0;
}

.google-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER */

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
    width: 100%;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-accent {
    color: var(--primary-color);
}

.footer p {
    color: #aaa;
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
    width: 100%;
}

/* BOTÓN WHATSAPP FLOTANTE */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* MOBILE MENU */

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

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

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

    .contact-items {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        list-style: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-grid,
    .services-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item img {
        height: 180px;
    }

    .lightbox {
        padding: 30px 60px;
    }

    .lightbox-nav {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .close-btn {
        top: 10px;
        right: 18px;
        font-size: 36px;
    }

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

    .whatsapp-contact-btn {
        padding: 20px 30px;
        font-size: 18px;
    }

    .whatsapp-contact-btn i {
        margin-right: 10px;
        font-size: 24px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .section-title h2,
    .about-content h2,
    .cta h2 {
        font-size: 32px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 150px;
    }

    .lightbox {
        padding: 20px 45px;
    }

    .btn,
    .btn-whatsapp,
    .btn-outline,
    .whatsapp-contact-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* Videos Wistia debajo de la galería */
.gallery-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.gallery-video-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .gallery-videos {
        grid-template-columns: 1fr;
    }
}

.hero-small {
    min-height: 40vh;
    padding-top: 130px;
    padding-bottom: 60px;
}

.privacy-content {
    padding: 60px 0 100px;
    background: var(--light-color);
}

.privacy-block {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.privacy-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.privacy-block p,
.privacy-block ul {
    color: #555;
    font-size: 15px;
}

.privacy-block ul {
    padding-left: 20px;
    margin-top: 5px;
}

/* ===== Cookie Banner (GDPR + GPC) ===== */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4000;
    background: rgba(15, 15, 26, 0.98); /* similar a --dark-color */
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.4);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.cookie-banner-text p {
    margin: 0;
    color: #ddd;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #ffd3b0;
}

.cookie-gpc-info {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.85;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #e05f00;
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Responsive banner */
@media (max-width: 768px) {
    .cookie-banner-inner {
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* --- SOLUCIÓN DEFINITIVA AL ESPACIO EN CONTACTO --- */

/* 1. Eliminamos los 300px forzados del contenedor del botón */
.whatsapp-contact-wrapper {
    min-height: auto !important; /* Quita el espacio artificial gigante */
    margin: 0 auto !important;
    padding: 0 !important;
}

/* 2. Quitamos el margen inferior que empuja al mapa hacia abajo */
.whatsapp-contact-btn {
    margin-bottom: 0 !important; /* Evita que el botón empuje al título "Encuéntranos" */
}

/* 3. Ajustamos las transiciones entre las secciones */
.contact {
    padding-bottom: 40px !important; /* Un pequeño colchón estético y limpio */
}

.map-location {
    padding-top: 20px !important; /* Acerca significativamente el título al botón */
}

.map-location .section-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}