/* Base Styles - Esquema Negro y Dorado */
:root {
    --gold-primary: #D4AF37;        /* Oro clásico principal */
    --gold-secondary: #FFD700;      /* Oro brillante */
    --gold-accent: #B8860B;         /* Oro oscuro para sombras */
    --gold-light: #F5D07A;          /* Oro claro para detalles */
    --black-primary: #000000;       /* Negro principal */
    --black-secondary: #111111;     /* Negro secundario */
    --black-tertiary: #1A1A1A;      /* Negro terciario */
    --black-light: #2A2A2A;         /* Negro más claro */
    --text-light: #F0F0F0;          /* Texto claro */
    --text-gray: #AAAAAA;           /* Texto gris */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Great Vibes', cursive;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 25px rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    --black-gradient: linear-gradient(135deg, var(--black-secondary), var(--black-primary));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--black-primary);
    padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Botones con efecto dorado metálico */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--black-primary);
}

.btn:hover::after {
    transform: rotate(30deg) translateY(20px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    margin-left: 15px;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-secondary);
    border-color: var(--gold-secondary);
}

.btn-outline:hover::before {
    left: 100%;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Navigation - Barra de Navegación Dorada */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Floating Balloons - Globos Dorados */
.floating-balloon {
    position: fixed;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.balloon1 {
    width: 100px;
    height: 120px;
    background-image: url('../images/balloons.png');
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.balloon2 {
    width: 80px;
    height: 100px;
    background-image: url('../images/balloons.png');
    top: 30%;
    right: 8%;
    animation: float 7s ease-in-out infinite 1s;
}

.balloon3 {
    width: 70px;
    height: 90px;
    background-image: url('../images/balloons.png');
    bottom: 20%;
    left: 10%;
    animation: float 9s ease-in-out infinite 0.5s;
}

.balloon4 {
    width: 90px;
    height: 110px;
    background-image: url('../images/balloons.png');
    bottom: 15%;
    right: 7%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.balloon5 {
    width: 60px;
    height: 80px;
    background-image: url('../images/balloons.png');
    top: 50%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Header/Hero Section - Portada Lujosa */
.hero {
    height: 100vh;
    min-height: 600px;
    background: var(--black-gradient);
    color: var(--gold-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold-primary);
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--gold-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section - Sobre Nosotros */
.about-section {
    padding: 100px 0;
    background-color: var(--black-primary);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 5px solid var(--black-tertiary);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--gold-gradient);
}

.about-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.about-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.icon-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    margin: 10px;
    transition: var(--transition);
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--black-primary);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.icon-item:hover .icon-circle {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.icon-item span {
    font-weight: 600;
    display: block;
    color: var(--text-light);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Services Section - Servicios */
.services-section {
    padding: 100px 0;
    background-color: var(--black-secondary);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

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

.service-card {
    background: var(--black-gradient);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--black-primary);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.service-card p {
    color: var(--text-gray);
}

/* Gallery Section - Galería */
.gallery-section {
    padding: 100px 0;
    background-color: var(--black-primary);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 5px;
    background-color: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    border: 2px solid var(--gold-primary);
}

.gallery-overlay h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 1.3rem;
    text-align: center;
    padding: 0 15px;
}

.gallery-overlay i {
    color: var(--gold-primary);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#lightbox-image {
    max-height: 80vh;
    max-width: 90vw;
    display: block;
    border-radius: 5px;
    border: 3px solid var(--gold-primary);
}

.lightbox-caption {
    color: var(--gold-primary);
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--gold-secondary);
}

/* Testimonials Section - Testimonios */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--black-secondary);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 350px;
    scroll-snap-align: start;
    background: var(--black-gradient);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    border-radius: 5px 5px 0 0;
}

.testimonial-content i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.testimonial-author h4 {
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section - Contacto */
.contact-section {
    padding: 100px 0;
    background-color: var(--black-primary);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-content {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--gold-gradient);
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--black-tertiary);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-gray);
    transition: var(--transition);
    pointer-events: none;
    background-color: var(--black-tertiary);
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--gold-primary);
    background-color: var(--black-primary);
}

/* Footer - Pie de Página */
.footer {
    background-color: var(--black-primary);
    color: var(--text-light);
    padding: 60px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    opacity: 0.8;
    color: var(--text-gray);
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    opacity: 0.8;
    transition: var(--transition);
    color: var(--text-gray);
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Language Toggle - Selector de Idioma */
.language-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 100;
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
    padding: 8px 15px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--black-primary);
}

/* Confirmation Modal - Modal de Confirmación */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: var(--black-gradient);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content i {
    font-size: 4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.modal-content p {
    margin-bottom: 25px;
    color: var(--text-gray);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold-primary);
}

/* Responsive Styles - Estilos Responsivos */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-section .container {
        flex-direction: column;
    }
    
    .contact-content, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--black-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .about-icons {
        justify-content: center;
    }
    
    .icon-item {
        min-width: 120px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .language-toggle {
        top: 90px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}