/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #DAA520;
    --accent-color: #FF6B35;
    --dark-color: #1a0a0a;
    --light-color: #FFF8DC;
    --text-color: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, #8B0000, #A0522D);
    --gradient-secondary: linear-gradient(135deg, #DAA520, #FFD700);
    --gradient-mystical: linear-gradient(135deg, #4B0082, #8B0000, #DAA520);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-mystical);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-text {
    text-align: left;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
}

.maestro-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b6b;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.maestro-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transform: rotate(-5deg);
    z-index: 20;
    white-space: nowrap;
}

.badge-text {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.badge-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.2;
}

@keyframes glow {
    from {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-guarantee i {
    font-size: 1.3rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-heart,
.floating-star,
.floating-moon {
    position: absolute;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-heart {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    color: var(--primary-color);
    animation-delay: 0s;
}

.floating-star {
    top: 30%;
    right: 15%;
    font-size: 1.5rem;
    color: var(--secondary-color);
    animation-delay: 2s;
}

.floating-moon {
    bottom: 20%;
    left: 20%;
    font-size: 2.5rem;
    color: var(--light-color);
    animation-delay: 4s;
}

.floating-heart::before {
    content: '💖';
}

.floating-star::before {
    content: '✨';
}

.floating-moon::before {
    content: '🌙';
}

/* Maestro Section */
.maestro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.maestro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.maestro-info {
    display: grid;
    gap: 2rem;
}

.maestro-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maestro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.maestro-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.maestro-card ul {
    list-style: none;
    padding: 0;
}

.maestro-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.maestro-card li:last-child {
    border-bottom: none;
}

.maestro-cta {
    display: flex;
    align-items: center;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
    height: fit-content;
}

.cta-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-card .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-card .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .maestro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .maestro-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    animation: blink 2s infinite;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-content i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.urgency-content span {
    color: var(--light-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-btn {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.urgency-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-color);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-light);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 5px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.blog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    color: var(--text-color);
    position: relative;
}

.faq::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="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23DAA520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a52a2a 100%);
    border-bottom: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question h3 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-question i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    background: rgba(218, 165, 32, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 400px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: justify;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-header h2 {
        font-size: 2rem;
    }
    
    .faq .section-header p {
        font-size: 1.1rem;
    }
    
    .faq-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
        line-height: 1.3;
    }
    
    .faq-question i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq .section-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .faq .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 12px;
    }
    
    .faq-question i {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
        padding: 5px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gradient-mystical);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 50px;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.consultation-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.consultation-hours h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.consultation-hours p {
    margin-bottom: 0.5rem;
}

.consultation-hours i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
    padding: 18px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

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

/* Responsive Design - Solución definitiva para móviles */
@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 100px !important;
        min-height: 100vh;
        padding-bottom: 3rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2.5rem !important;
        padding: 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
        padding: 0 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-image {
        order: 1;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        position: relative;
        width: 100%;
        max-width: 250px;
        height: auto;
        min-height: 220px;
    }
    
    .maestro-photo {
        width: 200px !important;
        height: 200px !important;
        border: 3px solid #ff6b6b !important;
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.6) !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 2000 !important;
        background-color: #fff !important;
        transform: scale(1) !important;
        filter: none !important;
    }
    
    .maestro-badge {
        position: absolute;
        bottom: 5px;
        right: 5px;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        font-weight: bold;
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        color: white;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.2rem !important;
        padding: 0 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.2rem !important;
        padding: 0 0.5rem !important;
        color: #ffd700 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.2rem !important;
        padding: 0 2rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .btn {
        width: calc(100% - 2rem) !important;
        max-width: 280px !important;
        min-width: 200px !important;
        padding: 1rem 1rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .hero-guarantee {
        font-size: 0.8rem;
        padding: 0.5rem;
        margin-top: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float a span {
        display: none;
    }
    
    .whatsapp-float a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}



@media (max-width: 480px) {
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    * {
        box-sizing: border-box !important;
    }
    
    .hero {
        padding: 1.5rem 1rem !important;
        min-height: auto !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.5rem !important;
        gap: 2rem !important;
        box-sizing: border-box !important;
    }
    
    .hero-image {
        max-width: 200px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        min-height: 180px !important;
    }
    
    .maestro-photo {
        width: 160px !important;
        height: 160px !important;
        border: 2px solid #ff6b6b !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 3000 !important;
        background-color: #fff !important;
        margin: 0 auto !important;
        transform: scale(1) !important;
        filter: none !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .maestro-badge {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.5rem !important;
        right: -5px !important;
        top: 5px !important;
        max-width: 80px !important;
        text-align: center !important;
    }
    
    .badge-text {
        display: block;
        font-size: 0.65rem;
        line-height: 1;
    }
    
    .badge-subtitle {
        display: block;
        font-size: 0.55rem;
        line-height: 1;
        margin-top: 2px;
    }
    
    .hero-text {
        width: 100% !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        gap: 1rem !important;
        padding: 0 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        margin-bottom: 2rem !important;
    }
    
    .btn {
        padding: 0.9rem 0.8rem !important;
        font-size: 0.75rem !important;
        max-width: 250px !important;
        width: calc(100% - 3rem) !important;
        min-width: 180px !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 20 !important;
        border-radius: 25px !important;
    }
    
    .hero-guarantee {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem !important;
        margin-top: 1rem !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .service-card {
        padding: 1rem !important;
        margin: 0.5rem !important;
    }
    
    .urgency-content {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
        flex-direction: column;
        gap: 8px;
    }
    
    .urgency-content span {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Warning Section */
.warning-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 50%, #fff5f5 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.warning-section::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="warning-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23warning-pattern)"/></svg>');
    z-index: 1;
}

.warning-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.warning-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.maestro-warning-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    animation: warningGlow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.maestro-warning-photo:hover {
    transform: scale(1.05);
}

.certification-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    animation: bounce 2s infinite;
}

.certification-badge i {
    font-size: 1.2rem;
}

@keyframes warningGlow {
    from {
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    }
    to {
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.6), 0 0 30px rgba(255, 107, 107, 0.4);
    }
}

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

.warning-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.warning-text h3 {
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.warning-message {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
}

.warning-message p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.verification-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.verification-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.5;
}

.verification-list li:last-child {
    border-bottom: none;
}

.verification-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-message {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #28a745;
    margin-top: 1.5rem;
}

.trust-message p {
    color: #155724;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.warning-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    animation: warningPulse 3s infinite;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42, var(--accent-color));
}

.btn-warning i {
    font-size: 1.3rem;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.guarantee-text {
    display: block;
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Warning Section */
@media (max-width: 768px) {
    .warning-section {
        padding: 60px 0;
    }
    
    .warning-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .maestro-warning-photo {
        width: 250px;
        height: 250px;
    }
    
    .warning-text h2 {
        font-size: 2.2rem;
    }
    
    .warning-text h3 {
        font-size: 1.5rem;
    }
    
    .warning-message {
        padding: 1.5rem;
    }
    
    .verification-list li {
        font-size: 1rem;
    }
    
    .btn-warning {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .warning-section {
        padding: 40px 0;
    }
    
    .warning-content {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .maestro-warning-photo {
        width: 200px;
        height: 200px;
    }
    
    .certification-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
        top: -10px;
        right: -10px;
    }
    
    .warning-text h2 {
        font-size: 1.8rem;
    }
    
    .warning-text h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .warning-message {
        padding: 1rem;
    }
    
    .verification-list li {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .verification-list i {
        font-size: 1.1rem;
    }
    
    .trust-message {
        padding: 1rem;
    }
    
    .trust-message p {
        font-size: 1rem;
    }
    
    .btn-warning {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .guarantee-text {
        font-size: 0.9rem;
    }
}