/* ===========================
  RESET MAX CONSTRUCTIONS RM
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f7;
    color: #333;
    overflow-x: hidden;
}

/* ==========================
   TOP BAR
=========================== */

.top-bar {
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    font-size: 13px;
    border-bottom: 2px solid #D4AF37;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.top-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-right a {
    color: #D4AF37;
    font-size: 16px;
    transition: .3s;
}

.top-right a:hover {
    color: white;
}

.top-left span i,
.top-right span i {
    color: #D4AF37;
    margin-right: 5px;
}

/* ==========================
   BOTONES
=========================== */

.btn {
    display: inline-block;
    background: #D4AF37;
    color: #111;
    padding: 15px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .35);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: white;
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.btn-outline {
    display: inline-block;
    padding: 15px 42px;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #111;
}

/* ==========================
   HEADER
=========================== */

header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(17, 17, 17, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
    z-index: 1000;
    transition: .35s;
}

.logo a {
    display: block;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
}

nav a:hover {
    color: #D4AF37;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    transition: .3s;
}

.menu-toggle:hover {
    color: #D4AF37;
}

.header-btn {
    background: #D4AF37;
    color: #111;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(212, 175, 55, .35);
}

.header-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.header-scroll {
    background: rgba(10, 10, 10, .98);
    height: 68px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    top: 0;
}

/* ==========================
   HERO
=========================== */

.hero {
    height: 92vh;
    min-height: 520px;
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    padding-top: 110px;
}

.hero-content {
    max-width: 850px;
}

.subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero h1 {
    font-size: 62px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: #eee;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================
   ABOUT
=========================== */

.about {
    background: #fff;
    padding: 65px 10%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    display: block;
    color: #D4AF37;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    margin-bottom: 18px;
}

.about-text .btn {
    display: inline-block;
    margin-top: 12px;
    width: max-content;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

/* ==========================
   SERVICES - VERSIÓN PROFESIONAL
=========================== */

.services {
    background: #f9f9f9;
    padding: 80px 10%;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    display: block;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 40px;
    color: #111;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.section-line {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
    border-color: #D4AF37;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #D4AF37;
}

.service-icon i {
    font-size: 30px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #111;
    letter-spacing: 1px;
}
/* ==========================
   GALLERY - VERSIÓN PROFESIONAL
=========================== */

.gallery {
    padding: 65px 10%;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .section-subtitle {
    display: block;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.gallery-header h2 {
    font-size: 40px;
    color: #111;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.gallery-header .section-line {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.4s ease;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.overlay-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* ==========================
   GALLERY - RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-header h2 {
        font-size: 34px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .overlay-title {
        font-size: 14px;
    }

    .overlay-icon {
        font-size: 24px;
    }

    .overlay {
        padding: 12px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================
   REDES SOCIALES - SECCIÓN ESPECIAL
=========================== */

.social-section {
    background: #f9f9f9;
    padding: 65px 10%;
    text-align: center;
}

.social-section-content .section-subtitle {
    display: block;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.social-section-content h2 {
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
}

.social-section-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.social-icons-big {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 36px;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-icon-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.social-icon-circle.facebook {
    background: #1877f2;
}

.social-icon-circle.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 20%, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.social-icon-circle.tiktok {
    background: #010101;
    border: 2px solid #25f4ee;
    color: #25f4ee;
}

.social-icon-circle.tiktok:hover {
    background: #25f4ee;
    color: #010101;
}

/* ==========================
   REDES SOCIALES EN CONTACTO
=========================== */

.social-contact {
    background: #f0f0f0 !important;
}

.social-contact-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-contact-icons a:hover {
    background: #D4AF37;
    color: #111;
    transform: scale(1.1);
}

/* ==========================
   REDES SOCIALES EN FOOTER
=========================== */

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #D4AF37;
    color: #111;
    transform: translateY(-3px);
}

/* ==========================
   WHY CHOOSE US
=========================== */

.why-us {
    background: #111;
    color: white;
    padding: 65px 10%;
}

.why-us h2 {
    text-align: center;
    color: #D4AF37;
    font-size: 36px;
    margin-bottom: 40px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.why-card {
    background: #1b1b1b;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #222;
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #D4AF37;
    margin-bottom: 12px;
    font-size: 18px;
}

.why-card p {
    line-height: 26px;
    color: #ddd;
    font-size: 15px;
}

/* ==========================
   STATS
=========================== */

.stats {
    background: #D4AF37;
    padding: 50px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 15px;
}

.stat-box h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 17px;
    font-weight: bold;
    color: #222;
}

/* ==========================
   TESTIMONIALS
=========================== */

.testimonials {
    background: #f8f8f8;
    padding: 65px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
}

.section-title h2 {
    font-size: 36px;
    margin: 12px 0;
    color: #111;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    line-height: 28px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-card h3 {
    color: #111;
    font-size: 17px;
}

.testimonial-card span {
    color: #777;
    font-size: 13px;
}

/* ==========================
   CONTACT
=========================== */

.contact {
    background: #fff;
    padding: 65px 10%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.info-box i {
    font-size: 24px;
    color: #D4AF37;
}

.info-box h3 {
    margin-bottom: 3px;
    color: #111;
    font-size: 16px;
}

.info-box p {
    color: #666;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* ==========================
   MAP
=========================== */

.map {
    width: 100%;
}

.map iframe {
    display: block;
    height: 380px;
}

/* ==========================
   FOOTER
=========================== */

footer {
    background: #111;
    color: white;
    padding: 55px 10% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

.footer-about img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #ccc;
    line-height: 26px;
    font-size: 14px;
}

.footer-links h3,
.footer-contact h3 {
    color: #D4AF37;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: .3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
    margin-top: 35px;
    padding-top: 18px;
    color: #aaa;
    font-size: 13px;
}

/* ==========================
   BOTONES FLOTANTES (SMS + LLAMADA + WHATSAPP)
=========================== */

.float-btn {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    transition: all .35s ease;
    color: white;
    z-index: 9998;
    border: none;
    outline: none;
}

.float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .4);
}

/* WhatsApp - Verde */
.whatsapp {
    bottom: 30px;
    right: 25px;
    background: #25D366;
}

.whatsapp:hover {
    background: #1EBE5D;
}

/* SMS - Azul */
.sms-btn {
    bottom: 98px;
    right: 25px;
    background: #34B7F1;
}

.sms-btn:hover {
    background: #1a8fc4;
}

/* Llamada - Verde oscuro */
.call-btn {
    bottom: 166px;
    right: 25px;
    background: #4CAF50;
}

.call-btn:hover {
    background: #388E3C;
}

/* ==========================
   SCROLL TO TOP
=========================== */

.scroll-top {
    position: fixed;
    bottom: 230px;
    right: 29px;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #111;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    transition: .35s;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: white;
    transform: translateY(-4px);
}

/* ==========================
   ANIMACIONES
=========================== */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   LIGHTBOX
=========================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
    cursor: default;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
    z-index: 100000;
}

.close-lightbox:hover {
    color: #d4af37;
}

/* Botones navegación lightbox */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, .7);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

/* ==========================
   SERVICES - RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-header h2 {
        font-size: 34px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .services {
        padding: 50px 5%;
    }

    .service-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .service-card {
        padding: 20px 15px;
        max-width: 100%;
        margin: 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .service-link {
        font-size: 12px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .services {
        padding: 40px 4%;
    }

    .service-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 15px 10px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .service-icon i {
        font-size: 16px;
    }

    .service-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .service-card p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .service-link {
        font-size: 11px;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .section-line {
        width: 40px;
    }
}

/* ==========================
   RESPONSIVE - GENERAL
=========================== */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, .98);
        flex-direction: column;
        padding: 25px 20px;
        gap: 18px;
        display: none;
        border-bottom: 2px solid #D4AF37;
    }

    nav.active {
        display: flex;
    }

    nav a {
        font-size: 15px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }

    .header-btn {
        display: none;
    }

    header {
        top: 0;
        height: 68px;
        padding: 0 5%;
    }

    .header-scroll {
        height: 68px;
        top: 0;
    }

    .logo img {
        width: 90px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero {
        padding-top: 68px !important;
        min-height: 420px;
        height: 85vh;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .btn,
    .btn-outline {
        padding: 12px 28px;
        font-size: 13px;
    }

    .about {
        padding: 45px 5%;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 26px;
    }

    .services {
        padding: 45px 5%;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-container {
        gap: 18px;
    }

    .card {
        padding: 25px;
    }

    .gallery {
        padding: 45px 5%;
    }

    .gallery h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .why-us {
        padding: 45px 5%;
    }

    .why-us h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-container {
        gap: 18px;
    }

    .why-card {
        padding: 25px;
    }

    .stats {
        padding: 35px 5%;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-box h2 {
        font-size: 34px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .testimonials {
        padding: 45px 5%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .contact {
        padding: 45px 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-box {
        padding: 16px;
    }

    .map iframe {
        height: 250px;
    }

    footer {
        padding: 40px 5% 15px;
    }

    .footer-container {
        gap: 25px;
        text-align: center;
    }

    .footer-about img {
        width: 130px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
        font-size: 12px;
    }

    /* Botones flotantes en móvil */
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        right: 18px;
    }

    .whatsapp {
        bottom: 25px;
        right: 18px;
    }

    .sms-btn {
        bottom: 82px;
        right: 18px;
    }

    .call-btn {
        bottom: 139px;
        right: 18px;
    }

    /* Scroll to top en móvil */
    .scroll-top {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: 195px;
        right: 20px;
    }

    /* Lightbox en móvil */
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .overlay {
        font-size: 15px;
        padding: 12px;
    }

    /* Redes sociales responsive */
    .social-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .social-section-content h2 {
        font-size: 28px;
    }

    .social-section-content p {
        font-size: 16px;
    }

    .social-icons-big {
        gap: 15px;
    }

    .social-contact-icons a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Botones flotantes en móviles pequeños */
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        right: 14px;
    }

    .whatsapp {
        bottom: 20px;
        right: 14px;
    }

    .sms-btn {
        bottom: 72px;
        right: 14px;
    }

    .call-btn {
        bottom: 124px;
        right: 14px;
    }

    .scroll-top {
        width: 38px;
        height: 38px;
        font-size: 14px;
        bottom: 175px;
        right: 16px;
    }

    /* Redes sociales responsive móvil pequeño */
    .social-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .social-icons-big {
        gap: 12px;
    }
}

/* Ajuste para scroll en secciones */
section {
    scroll-margin-top: 110px;
}