/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Asegurar que todo el texto sea visible */
h1, h2, h3, h4, h5, h6, p, span, li, a, label {
    color: inherit;
}

/* Estilos específicos para elementos de texto */
.hero-content h1,
.hero-content p,
.section-header h2,
.section-header p,
.service-card h3,
.service-card p,
.about-text h2,
.about-text p,
.testimonial-content p,
.contact-details h4,
.contact-details p,
.footer-section h3,
.footer-section h4,
.footer-section p,
.footer-section ul li a {
    color: #ffffff;
}

.section-header h2,
.about-text h2,
.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0e2c4a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(14, 44, 74, 0.98) 0%, rgba(26, 58, 90, 0.98) 100%);
    backdrop-filter: blur(25px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="header-marble" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%230e2c4a"/><circle cx="30" cy="40" r="1.5" fill="%23D4AF37" opacity="0.12"/><circle cx="170" cy="60" r="1" fill="%23D4AF37" opacity="0.08"/><circle cx="80" cy="160" r="1.5" fill="%23D4AF37" opacity="0.10"/><circle cx="150" cy="180" r="1" fill="%23D4AF37" opacity="0.06"/><circle cx="40" cy="120" r="1.5" fill="%23D4AF37" opacity="0.09"/><circle cx="120" cy="20" r="1" fill="%23D4AF37" opacity="0.11"/><circle cx="180" cy="140" r="1.5" fill="%23D4AF37" opacity="0.07"/><circle cx="60" cy="80" r="1" fill="%23D4AF37" opacity="0.13"/></pattern></defs><rect width="200" height="200" fill="url(%23header-marble)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 280px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: #D4AF37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0e2c4a 0%, #1a3a5a 50%, #0e2c4a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="hero-marble" width="300" height="300" patternUnits="userSpaceOnUse"><rect width="300" height="300" fill="%230e2c4a"/><circle cx="50" cy="50" r="3" fill="%23D4AF37" opacity="0.15"/><circle cx="250" cy="80" r="2.5" fill="%23D4AF37" opacity="0.12"/><circle cx="80" cy="250" r="2" fill="%23D4AF37" opacity="0.10"/><circle cx="280" cy="280" r="2.5" fill="%23D4AF37" opacity="0.13"/><circle cx="30" cy="180" r="2" fill="%23D4AF37" opacity="0.11"/><circle cx="200" cy="30" r="2.5" fill="%23D4AF37" opacity="0.14"/><circle cx="150" cy="200" r="2" fill="%23D4AF37" opacity="0.09"/><circle cx="100" cy="120" r="2.5" fill="%23D4AF37" opacity="0.16"/><circle cx="220" cy="150" r="2" fill="%23D4AF37" opacity="0.08"/><circle cx="70" cy="90" r="2.5" fill="%23D4AF37" opacity="0.12"/><circle cx="180" cy="270" r="2" fill="%23D4AF37" opacity="0.10"/><circle cx="40" cy="220" r="2.5" fill="%23D4AF37" opacity="0.13"/></pattern></defs><rect width="300" height="300" fill="url(%23hero-marble)"/></svg>');
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.hero-image:hover .hero-photo::before {
    transform: translateX(100%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e2c4a 0%, #1a3a5a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250"><defs><pattern id="services-marble" width="250" height="250" patternUnits="userSpaceOnUse"><rect width="250" height="250" fill="%230e2c4a"/><circle cx="40" cy="60" r="2.5" fill="%23D4AF37" opacity="0.12"/><circle cx="210" cy="90" r="2" fill="%23D4AF37" opacity="0.10"/><circle cx="70" cy="220" r="2.5" fill="%23D4AF37" opacity="0.08"/><circle cx="230" cy="240" r="2" fill="%23D4AF37" opacity="0.11"/><circle cx="25" cy="150" r="2.5" fill="%23D4AF37" opacity="0.09"/><circle cx="170" cy="25" r="2" fill="%23D4AF37" opacity="0.13"/><circle cx="120" cy="180" r="2.5" fill="%23D4AF37" opacity="0.07"/><circle cx="80" cy="100" r="2" fill="%23D4AF37" opacity="0.14"/><circle cx="190" cy="130" r="2.5" fill="%23D4AF37" opacity="0.06"/><circle cx="60" cy="70" r="2" fill="%23D4AF37" opacity="0.10"/><circle cx="150" cy="230" r="2.5" fill="%23D4AF37" opacity="0.08"/><circle cx="30" cy="190" r="2" fill="%23D4AF37" opacity="0.11"/></pattern></defs><rect width="250" height="250" fill="url(%23services-marble)"/></svg>');
    opacity: 0.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon i {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e2c4a 0%, #1a3a5a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 280 280"><defs><pattern id="about-marble" width="280" height="280" patternUnits="userSpaceOnUse"><rect width="280" height="280" fill="%230e2c4a"/><circle cx="50" cy="70" r="3" fill="%23D4AF37" opacity="0.14"/><circle cx="230" cy="100" r="2.5" fill="%23D4AF37" opacity="0.11"/><circle cx="80" cy="240" r="3" fill="%23D4AF37" opacity="0.09"/><circle cx="250" cy="260" r="2.5" fill="%23D4AF37" opacity="0.12"/><circle cx="30" cy="170" r="3" fill="%23D4AF37" opacity="0.10"/><circle cx="190" cy="35" r="2.5" fill="%23D4AF37" opacity="0.15"/><circle cx="140" cy="200" r="3" fill="%23D4AF37" opacity="0.08"/><circle cx="100" cy="120" r="2.5" fill="%23D4AF37" opacity="0.16"/><circle cx="210" cy="150" r="3" fill="%23D4AF37" opacity="0.07"/><circle cx="70" cy="80" r="2.5" fill="%23D4AF37" opacity="0.11"/><circle cx="170" cy="250" r="3" fill="%23D4AF37" opacity="0.09"/><circle cx="40" cy="210" r="2.5" fill="%23D4AF37" opacity="0.13"/><circle cx="180" cy="180" r="3" fill="%23D4AF37" opacity="0.06"/><circle cx="120" cy="40" r="2.5" fill="%23D4AF37" opacity="0.12"/></pattern></defs><rect width="280" height="280" fill="url(%23about-marble)"/></svg>');
    opacity: 0.65;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.credential span {
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e2c4a 0%, #1a3a5a 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury3" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="0.5" fill="%23D4AF37" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury3)"/></svg>');
    opacity: 0.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.author-avatar i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
}

.author-info span {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e2c4a 0%, #1a3a5a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury4" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.5" fill="%23D4AF37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury4)"/></svg>');
    opacity: 0.2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
    color: #1a1a1a;
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.contact-details p {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 300;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group select option {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    color: #ffffff;
}

.form-group select option {
    background: #0e2c4a;
    color: #ffffff;
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1a2a 0%, #0e2c4a 100%);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury5" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury5)"/></svg>');
    opacity: 0.2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: #D4AF37;
    opacity: 1;
}

.footer-section ul li i {
    color: #D4AF37;
    margin-right: 0.5rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #ffffff;
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.about-content,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 