* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   
   body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f5f5f5;
   }
   
   .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   }
   
   /* Header */
   header {
    background: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
   }
   
   nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
   }
   
   .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
   }
   
   .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
   }
   
   .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
   }
   
   .nav-links a:hover {
    color: #e0e0e0;
   }
   
   /* Hamburger Menu */
   .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    gap: 6px;
   }
   
   .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
   }
   
   .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
   }
   
   .hamburger.active span:nth-child(2) {
    opacity: 0;
   }
   
   .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
   }
   
   .social-links {
    display: flex;
    gap: 15px;
   }
   
   .social-links a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
   }
   
   .social-links a:hover {
    color: #e0e0e0;
   }
   
   /* Hero Section */
   .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
   }
   
   .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
   
   }
   
   /* Videos del Hero */
   .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
   }
   
   .hero-video-desktop {
    display: none;
   }
   
   .hero-video-mobile {
    display: block;
   }
   
   /* Desktop: Mostrar video de escritorio */
   @media (min-width: 1025px) {
    .hero-video-desktop {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    }
    
    .hero-video-mobile {
    display: none;
    }
   }
   
   /* Tablet/Mobile: Mostrar video de móvil */
   @media (max-width: 1024px) {
    .hero-video-desktop {
    display: none;
    }
    
    .hero-video-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
   }
   
   .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
   }
   
   /* Hero content: subtle card, entrance animation and dimmed state */
   .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 20px;
    padding: 18px 24px;
    border-radius: 10px;
    display: inline-block;
    /* background removed to avoid opaque overlay */
    background: transparent;
    transition: opacity 450ms ease, transform 450ms ease, box-shadow 300ms ease;
    animation: heroEntrance 700ms cubic-bezier(.2,.9,.2,1);
   }
   
   .hero-content h1, .hero-content p { color: #fff; }
   
   @keyframes heroEntrance {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
   }
   
   /* Note: Hero dimming/proximity behavior removed per user preference. */
   /* Restore a simple dimmed state so hero text doesn't block video subtitles.
    Text will be dimmed when the hero is visible; hovering or proximity reveals it. */
   .hero-content.dimmed {
    opacity: 0.14 !important;
    transform: translateY(-6px) !important;
    pointer-events: auto !important;
    filter: saturate(0.9);
   }
   
   /* If user hovers/focuses the hero, show full text again */
   .hero:hover .hero-content.dimmed,
   .hero:focus-within .hero-content.dimmed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
   }
   
   /* Respect reduced motion preference */
   @media (prefers-reduced-motion: reduce) {
    .hero-content { animation: none !important; transition: none !important; }
   }
   
   .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
   }
   
   .hero-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    display: flex;
    gap: 10px;
   }
   
   /* Botón de mute flotante cuando se hace scroll */
   .mute-btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none !important;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
   }
   
   .mute-btn-floating.visible {
    display: block !important;
    opacity: 1;
    visibility: visible;
   }
   
   
   .video-control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   }
   
   .video-control-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
   }
   
   .video-control-btn.active {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
   }
   
   .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Aleo', serif;
   }
   
   .hero-content .highlight {
    color: #f8f8f8;
   }
   
   .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Aleo', serif;
   }
   
   /* Hero text container for animation */
   .hero-text-container {
    opacity: 0;
    transition: opacity 1s ease-in-out;
   }
   
   .hero-text-container.show {
    opacity: 1;
   }
   
   .hero-text-container.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
   }
   
   /* Animation for text visibility on video play */
   .hero-text-container.video-playing {
    animation: textFadeInOut 7.5s ease-in-out forwards;
   }
   
   @keyframes textFadeInOut {
    0% {
    opacity: 0;
    }
    6.67% {
    opacity: 1;
    }
    86.67% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    }
   }
   
   .cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #000;
    cursor: pointer;
   }
   
   .cta-button:hover {
    background: #fff;
    color: #000;
    border: 2px solid #000;
   }
   
   /* CTA Button expansion animation after text fades */
   .cta-button.expanded {
    padding: 20px 45px;
    font-size: 1.15rem;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
   }
   
   /* Responsive button expansion for tablets and mobile */
   @media (max-width: 768px) {
    .cta-button.expanded {
    padding: 16px 35px;
    font-size: 1.05rem;
    transform: scale(1.03);
    }
   }
   
   @media (max-width: 480px) {
    .cta-button.expanded {
    padding: 14px 28px;
    font-size: 1rem;
    transform: scale(1.02);
    }
   }
   
   /* Calendar Section */
   .calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
   }
   
   .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
   }
   
   .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.3px;
   }
   
   .calendar-container {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    margin-top: 40px;
    transition: all 0.3s ease;
   }
   
   .calendar-container.unlocked {
    border-color: #4a4a4a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
   }
   
   .calendar-scroll-wrapper {
    position: relative;
    width: 100%;
   }
   
   .calendar-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
    display: block;
    position: relative;
    z-index: 1;
   }
   
   /* Lock Overlay Styles */
   .calendar-container.locked {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   
   .calendar-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 60px 40px;
   }
   
   .lock-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
   }
   
   .calendar-lock-overlay h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
   }
   
   .calendar-lock-overlay p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
   }
   
   .lock-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top: 20px;
    transition: all 0.3s ease;
   }
   
   .lock-message:hover {
    border-color: #4a4a4a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
   }
   
   /* Change-service footer inside the calendar overlay */
   .change-service-footer {
    width: 100%;
    max-width: 880px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .change-service-label {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
   }
   .change-service-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
   }
   .change-service-select {
    width: 100%;
    max-width: 380px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #222;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
   }
   .change-service-buttons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
   }
   .btn-primary {
    background: linear-gradient(90deg, #262626, #111);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
   }
   .btn-secondary {
    background: #fff;
    color: #111;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
   }
   
   @media (min-width: 700px) {
    .change-service-controls { flex-direction: row; align-items: center; }
    .change-service-select { margin-right: 12px; margin-bottom: 0; }
    .change-service-label { display: none; }
   }
   
   /* Calendar service switcher (shown under iframe when unlocked) */
   .calendar-service-switcher {
    margin: 24px auto 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-radius: 0;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
   }
   .calendar-service-switcher.visible {
    display: flex !important;
    opacity: 1;
   }
   .calendar-service-switcher[hidden] {
    display: none !important;
    opacity: 0;
   }
   .calendar-service-switcher .change-service-label {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: 1rem;
    width: 100%;
    text-align: center;
   }
   .calendar-service-switcher .change-service-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
   }
   
   .change-service-select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 14px;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
   }
   
   .change-service-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
   }
   
   .btn-primary {
    background: linear-gradient(90deg, #262626, #111);
    color: #fff;
    padding: 11px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 14px;
    width: 100%;
   }
   
   .btn-secondary {
    background: #fff;
    color: #111;
    padding: 11px 24px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
   }
   
   .calendar-footer-text {
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: none;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-weight: 400;
    width: 100%;
   }
   
   @media (min-width: 600px) {
    .calendar-service-switcher {
    gap: 14px;
    padding: 24px 28px;
    }
    
    .calendar-service-switcher .change-service-controls {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    }
    
    .change-service-select {
    width: auto;
    flex: 1 1 auto;
    font-size: 15px;
    padding: 12px 16px;
    }
    
    .change-service-buttons {
    flex-direction: row;
    gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
    width: auto;
    font-size: 15px;
    padding: 11px 28px;
    }
    
    .calendar-footer-text {
    font-size: 0.95rem;
    }
   }
   
   @media (min-width: 900px) {
    .calendar-service-switcher {
    gap: 16px;
    padding: 32px 40px;
    }
    
    .calendar-service-switcher .change-service-label {
    font-size: 1.05rem;
    }
    
    .change-service-select {
    flex: 0 1 380px;
    }
   }
   
   .lock-message p {
    margin: 0;
    font-size: 1.05rem;
    color: #2c2c2c;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
   }
   
   @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
   }
   
   /* Unlocked state */
   .calendar-container.unlocked .calendar-lock-overlay {
    display: none;
   }
   
   .calendar-container.unlocked .calendar-scroll-wrapper {
    display: block !important;
   }
   
   /* About Section */
   .about {
    padding: 80px 0;
    background: #f8f8f8;
   }
   
   .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
   }
   
   .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
   }
   
   .about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
   }
   
   .stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
   }
   
   .stat {
    text-align: center;
   }
   
   .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c2c2c;
   }
   
   .stat-label {
    color: #666;
    font-size: 0.9rem;
   }
   
   .about-image {
    text-align: center;
   }
   
   .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   }
   
   /* Services Section */
   .services {
    padding: 80px 0;
    background: #ecf0f1;
   }
   
   .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    
   }
   
    .service-card {
    background: #f8f9fa;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
    padding: 20px 5px !important;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: 700px;
    overflow: hidden;
    }
    
    .service-card.popular {
    padding-top: 30px !important;
    overflow: visible;
    }
    
    .service-card-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px;
    scrollbar-width: thin;
    scrollbar-color: #bdc3c7 #f8f9fa;
    text-align: left;
    }
    
    .service-card-content > * {
    text-align: left;
    }
    
    .service-card h3,
    .service-card .service-price,
    .service-card .service-duration {
    text-align: center !important;
    }
    
    .service-card-content::-webkit-scrollbar {
    width: 6px;
    }
    
    .service-card-content::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
    }
    
    .service-card-content::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 10px;
    }
    
    .service-card-content::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
    }
   
   .service-card:hover {
    border-color: #4a4a4a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
   }
   
   .service-card.popular {
    border-color: #4a4a4a;
   
   }
   
   .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a4a4a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
   }
   
   .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px !important;
    color: #000;
   }
   
   .service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px !important;
   }
   
   .service-duration {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px !important;
    font-style: italic;
   }
   
   .service-description {
    color: #666;
    margin-bottom: 30px !important;
    line-height: 1.7;
    padding: 0 15px !important;
    text-align: left;
    text-align-last: left;
   }
   
   .service-ideal {
    background: #f8f9fa;
    padding: 25px !important;
    border-left: 4px solid #4a4a4a;
    margin: 30px 0 !important;
    font-size: 0.9rem;
    color: #555;
    border-radius: 0 5px 5px 0;
    text-align: left;
    text-align-last: left;
   }
   
   .service-features {
    list-style: none;
    margin-bottom: 35px !important;
    padding: 0;
   }
   
   .service-features li {
    margin-bottom: 1rem;
    color: #666;
    position: relative;
    padding-left: 50px;
    text-align: left;
    text-align-last: left;
   }
   
   .service-features li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #2c2c2c;
    font-weight: bold;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
   }
   
   .service-button {
    background: #000;
    color: #fff;
    padding: 15px 25px !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0 !important;
    flex-shrink: 0;
   }
   
   .service-card.popular .service-button {
    background: #4a4a4a;
   }
   
   .service-button:hover {
    background: #333;
   }
   
    .service-card.popular .service-button:hover {
    background: #333;
   }
   
   /* Mobile service card expansion */
   .service-card.mobile-expanded {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    border-radius: 0;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    transform: none;
    box-shadow: none;
   }
   
   .service-card.mobile-expanded .service-features {
    display: block;
   }
   
   .service-card.mobile-expanded .service-description {
    display: block;
   }
   
   .service-card.mobile-expanded h3 {
    margin-top: 20px;
   }
   
   .mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4a4a4a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 1001;
   }
   
   .service-card.mobile-expanded .mobile-close-btn {
    display: block;
   }
   
   .service-card.mobile-expanded .popular-badge {
    display: none;
   }
   
   /* Before After Section */
   .before-after {
    padding: 80px 0;
    background: #f8f8f8;
   }
   
   .carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 50px auto 0;
    overflow: hidden;
    width: 100%;
    padding: 0 20px;
   }
   
   .carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    will-change: transform;
   }
   
   .carousel-slide {
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    flex-shrink: 0;
   }
   
   .before-after-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
   }
   
   .before-after-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
   }
   
   /* Disable hover effects on touch devices */
   @media (hover: none) {
    .before-after-item:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
   }
   
   .before-after-item:hover .before-after-badge.antes {
    display: none !important;
   }
   
   .before-after-item:hover .before-after-badge.despues {
    display: inline-block !important;
   }
   
   .before-after-item:hover .image-before {
    opacity: 0;
   }
   
   .before-after-item:hover .image-after {
    opacity: 1;
   }
   
   .image-container {
    position: relative;
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
   }
   
   .image-before,
   .image-after {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    display: block;
    transition: opacity 0.5s ease-in-out;
   }
   
   .image-before {
    opacity: 1;
    position: relative;
    z-index: 1;
   }
   
   .image-after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
   }
   
   .before-after-item .before-after-badge.despues {
    display: none !important;
   }
   
   .before-after-item .before-after-badge.antes {
    display: inline-block !important;
   }
   
   .before-after-content {
    padding: 20px;
    position: relative;
    z-index: 10;
    background: #fff;
    margin-top: 0;
   }
   
   .before-after-content h4 {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.2rem;
   }
   
   .before-after-content p {
    color: #666;
    font-size: 0.9rem;
   }
   
   .before-after-badge {
    display: inline-block !important;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 15;
    visibility: visible !important;
    opacity: 1 !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
   }
   
   .before-after-badge.antes {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 1rem;
    padding: 10px 25px;
    z-index: 15;
   }
   
   .before-after-badge.despues {
    background: #5D6532;
    color: #FFF;
   }
   
   /* Carousel Navigation */
   .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
   }
   
   .carousel-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   }
   
   .carousel-btn:hover {
    background: #D4AF37;
    transform: scale(1.1);
   }
   
   .carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
   }
   
   .carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
   }
   
   .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
   }
   
   .carousel-dot.active {
    background: #000;
    width: 30px;
    border-radius: 6px;
   }
   
   .carousel-dot:hover {
    background: #666;
   }
   
   /* Recomendaciones Section */
   .faq {
    padding: 80px 0;
    background: #fff;
   }
   
   .faq-container {
    max-width: 1000px;
    margin: 0 auto;
   }
   
   .faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
   }
   
   .faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
   }
   
   .faq-answer {
    padding: 20px;
    color: #666;
    display: none;
   }
   
   .faq-answer.active {
    display: block;
   }
   
   .faq-video {
    width: 100%;
    max-width: 300px;
    height: 500px;
    border-radius: 15px;
    margin: 0 auto 15px auto;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
   }
   
   
   .faq-text {
    font-size: 16px;
    line-height: 1.6;
   }
   
   .faq-icon {
    transition: transform 0.3s;
    font-size: 18px;
   }
   
   .faq-item.active .faq-icon {
    transform: rotate(180deg);
   }
   
   /* Testimonials Section */
   .testimonials {
    padding: 80px 0;
    background: #e8e8e8;
   }
   
   .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
   }
   
   .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
   }
   
   .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
   }
   
   /* Added logo watermark styling */
   .testimonial-logo-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 200px;
    height: 160px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
   }
   
   .testimonial-logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
   }
   
   .testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
   }
   
   .star {
    color: #d4af37;
    font-size: 20px;
   }
   
   .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 0;
    font-style: italic;
    font-weight: 600;
    position: relative;
    z-index: 2;
   }
   
   /* Responsive design for testimonials grid */
   @media (max-width: 1024px) {
    .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    }
   }
   
   @media (max-width: 768px) {
    .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }
   
    .testimonial-card {
    min-height: 150px;
    }
   
    .testimonial-logo-watermark {
    width: 100px;
    height: 100px;
    }
   }
   
   .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
   }
   
   .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a4a4a, #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
   }
   
   .author-info h4 {
    color: #000;
    margin-bottom: 5px;
    font-size: 16px;
   }
   
   .author-info p {
    color: #666;
    font-size: 14px;
   }
   
   /* Payment Selection Styles */
   .payment-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 3px solid #e0e0e0;
   }
   
   .payment-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
   }
   
   .payment-card:hover {
    border-color: #5D6532;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(93, 101, 50, 0.25);
   }
   
   .payment-card.popular {
    border-color: #4a4a4a;
    transform: scale(1.05);
   }
   
   .payment-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
   }
   
   .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a4a4a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
   }
   
   .payment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.5px;
   }
   
   .payment-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -1px;
   }
   
   .payment-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
   }
   
   .payment-btn {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(74, 74, 74, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
   }
   
   .payment-btn:hover {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 74, 74, 0.4);
   }
   
   .payment-card.popular .payment-btn {
    background: #000;
   }
   
   .payment-card.popular .payment-btn:hover {
    background: #333;
   }
   
   /* Disable hover effects on touch devices */
   @media (hover: none) {
    .payment-card:hover {
    transform: none;
    border-color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
   
    .payment-card.popular:hover {
    transform: none;
    }
   }
   
   /* Footer */
   footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
    text-align: center;
   }
   
   .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
   }
   
   .footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
   }
   
   .footer-section p, .footer-section a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
   }
   
   .footer-section a:hover {
    color: #e0e0e0;
   }
   
   .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
   }
   
   .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
   }
   
   .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
   }
   
   .instagram {
    background: transparent;
    color: white;
    border: none;
   }
   
   .tiktok {
    background: transparent;
    color: white;
    border: none;
   }
   
   .whatsapp {
    background: transparent;
    color: white;
    border: none;
   }
   
   .footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 20px;
    color: #fff;
   }
   
   /* Mobile Responsive */
   @media (max-width: 768px) {
    .container {
    padding: 0 15px;
    }
   
    /* Header */
    header {
    padding: 15px 0;
    }
   
    nav {
    padding: 0 15px;
    flex-wrap: wrap;
    position: relative;
    }
   
    .hamburger {
    display: flex;
    order: 2;
    }
   
    .logo {
    font-size: 20px;
    order: 1;
    }
   
    .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid #333;
    list-style: none;
    gap: 0;
    animation: slideDown 0.3s ease;
    }
   
    .nav-links.active {
    display: flex;
    }
   
    .nav-links li {
    width: 100%;
    padding: 0;
    }
   
    .nav-links li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    }
   
    .nav-links li:last-child a {
    border-bottom: none;
    }
   
    @keyframes slideDown {
    from {
    opacity: 0;
    transform: translateY(-10px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
   
    /* Hero Section */
    .hero {
    height: 100vh;
    min-height: 600px;
    }
   
    .hero-content {
    max-width: 100%;
    padding: 0 20px;
    }
   
    .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    }
   
    .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
    }
   
    .cta-button {
    padding: 12px 25px;
    font-size: 14px;
    }
   
    .hero-controls {
    bottom: 15px;
    right: 15px;
    flex-direction: column;
    gap: 10px;
    }
   
    .video-control-btn {
    padding: 12px;
    font-size: 16px;
    width: 45px;
    height: 45px;
    }
   
    .mute-btn-floating {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    }
   
    /* About Section */
    .about {
    padding: 60px 0;
    }
   
    .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    }
   
    .about-text {
    order: 2;
    }
   
    .about-image {
    order: 1;
    }
   
    .about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    }
   
    .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 10px;
    }
   
    .about-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    }
   
    .stats {
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
    }
   
    .stat {
    min-width: 100px;
    }
   
    .stat-number {
    font-size: 2rem;
    }
   
    .stat-label {
    font-size: 0.8rem;
    }
   
    /* Services Section */
    .services {
    padding: 60px 0;
    }
   
    .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    }
   
    .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    }
   
    .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    }
   
    /* Calendar Section */
    .calendar-section {
    padding: 60px 0;
    }
   
    /* Payment Selection Responsive */
    .payment-selection {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    }
   
    .payment-card {
    padding: 25px 20px;
    border-radius: 15px;
    }
   
    .payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    }
   
    .payment-card .price {
    font-size: 2rem;
    margin-bottom: 15px;
    }
   
    .payment-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    }
   
    .payment-btn {
    padding: 14px 30px;
    font-size: 15px;
    }
   
    .payment-card.popular {
    transform: none;
    }
   
    .payment-card.popular:hover {
    transform: translateY(-5px);
    }
   
    .popular-badge {
    top: -10px;
    right: 15px;
    padding: 4px 12px;
    font-size: 0.75rem;
    }
   
    .service-card {
    padding: 20px 15px;
    margin-bottom: 10px;
    }
   
    .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    }
   
    .service-price {
    font-size: 1.3rem;
    margin-bottom: 10px;
    }
   
    .service-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: none; /* Ocultar por defecto en móvil */
    }
   
    .service-features {
    margin-bottom: 20px;
    display: none; /* Ocultar por defecto en móvil */
    }
   
    .service-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    }
   
    .service-button {
    padding: 8px 16px;
    font-size: 13px;
    }
   
    /* Mostrar botón de "Ver más" en móvil */
    .service-card::after {
    content: "Ver más detalles";
    display: block;
    color: #2c2c2c;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
    }
   
    .service-card.popular {
    transform: none;
    padding: 15px;
    }
   
    .service-card.popular h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    }
   
    .service-card.popular .service-price {
    font-size: 1.3rem;
    margin-bottom: 10px;
    }
   
    /* Before After Section */
    .before-after {
    padding: 50px 0;
    }
   
    .carousel-container {
    width: 100%;
    margin: 25px auto 0;
    padding: 0 15px;
    max-width: 100%;
    }
   
    .carousel-wrapper {
    gap: 0;
    }
   
    .carousel-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0 5px;
    justify-content: center;
    }
   
    .before-after-item {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    }
   
    .image-container {
    width: 100%;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
    }
   
    .image-before,
    .image-after {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
    display: block;
    }
   
    .before-after-badge {
    font-size: 0.85rem !important;
    padding: 8px 18px !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 15 !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    color: #fff !important;
    border-radius: 20px !important;
    backdrop-filter: blur(5px);
    }
   
    .before-after-badge.antes {
    font-size: 0.9rem !important;
    padding: 9px 20px !important;
    z-index: 15 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    color: #fff !important;
    }
   
    .before-after-badge.despues {
    background: rgba(93, 101, 50, 0.9) !important;
    }
   
    /* Touch interaction for mobile */
    .before-after-item:active .before-after-badge.antes {
    display: none !important;
    }
   
    .before-after-item:active .before-after-badge.despues {
    display: inline-block !important;
    }
   
    .before-after-item:active .image-before {
    opacity: 0;
    }
   
    .before-after-item:active .image-after {
    opacity: 1;
    }
   
    .before-after-content {
    padding: 18px 15px !important;
    position: relative !important;
    z-index: 10 !important;
    background: #fff !important;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    }
   
    .before-after-content h4 {
    font-size: 1.1rem !important;
    margin-bottom: 6px !important;
    color: #000 !important;
    display: block !important;
    visibility: visible !important;
    font-weight: 600;
    }
   
    .before-after-content p {
    font-size: 0.85rem !important;
    color: #666 !important;
    display: block !important;
    visibility: visible !important;
    margin: 0;
    }
   
    .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }
   
    .carousel-btn:active {
    transform: scale(0.95);
    }
   
    .carousel-nav {
    gap: 12px;
    margin-top: 25px;
    padding: 0 10px;
    }
   
    .carousel-dots {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    }
   
    .carousel-dot {
    width: 10px;
    height: 10px;
    }
   
    .carousel-dot.active {
    width: 24px;
    height: 10px;
    }
   
    /* Testimonials Section */
    .testimonials {
    padding: 60px 0;
    }
   
    .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    }
   
    /* Recomendaciones Section */
    .faq {
    padding: 60px 0;
    }
   
    .faq-container {
    padding: 0 10px;
    }
   
    .faq-question {
    padding: 15px;
    font-size: 16px;
    }
   
    .faq-answer {
    padding: 15px;
    }
   
    .faq-video {
    height: 350px;
    max-width: 100%;
    }
   
   
    .social-icons {
    gap: 15px;
    justify-content: center;
    }
   
    .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    }
   
    .faq-video {
    height: 400px;
    max-width: 250px;
    }
   
    .calendar-container {
    padding: 20px 15px;
    margin-top: 30px;
    }
   
    .calendar-container iframe {
    height: 500px;
    }
   
    .calendar-container.locked {
    min-height: 500px;
    }
   
    .calendar-lock-overlay {
    padding: 40px 20px;
    }
   
    .lock-icon {
    font-size: 3rem;
    }
   
    .calendar-lock-overlay h3 {
    font-size: 1.5rem;
    }
   
    .calendar-lock-overlay p {
    font-size: 1rem;
    }
   
    .lock-message {
    padding: 20px;
    margin-top: 15px;
    }
   
    .lock-message p {
    font-size: 0.95rem;
    }
   
    /* Footer */
    footer {
    padding: 40px 0 20px;
    }
   
    .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    }
   
    .footer-section {
    margin-bottom: 20px;
    }
   
    .social-icons {
    gap: 15px;
    justify-content: center;
    }
   
    .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    }
   }
   
   @media (max-width: 480px) {
    .hero-content h1 {
    font-size: 2rem;
    }
   
    .hero-content p {
    font-size: 1rem;
    }
   
    .cta-button {
    padding: 12px 20px;
    font-size: 14px;
    margin: 5px;
    }
   
    /* Servicios más compactos en móviles pequeños */
    .services-grid {
    gap: 15px;
    }
   
    /* Payment Selection - Móviles pequeños */
    .payment-selection {
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    }
   
    .payment-card {
    padding: 20px 15px;
    border-radius: 12px;
    }
   
    .payment-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    }
   
    .payment-card .price {
    font-size: 1.7rem;
    margin-bottom: 12px;
    }
   
    .payment-card p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.5;
    }
   
    .payment-btn {
    padding: 12px 25px;
    font-size: 14px;
    }
   
    .popular-badge {
    top: -8px;
    right: 10px;
    padding: 3px 10px;
    font-size: 0.7rem;
    }
   
    .service-card {
    padding: 18px 12px;
    margin-bottom: 8px;
    }
   
    .service-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    }
   
    .service-price {
    font-size: 1.2rem;
    margin-bottom: 8px;
    }
   
    .service-description {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
    }
   
    .service-features {
    margin-bottom: 15px;
    }
   
    .service-features li {
    padding: 3px 0px 0px 25px;
    font-size: 0.8rem;
    }
   
    .service-button {
    padding: 6px 12px;
    font-size: 12px;
    }
   
    .service-card.popular {
    padding: 12px;
    }
   
    .service-card.popular h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    }
   
    .service-card.popular .service-price {
    font-size: 1.2rem;
    margin-bottom: 8px;
    }
   
    /* Imagen más pequeña en móviles pequeños */
    .about-image img {
    max-width: 250px;
    }
   
    /* Ajustes de texto para móviles pequeños */
    .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    }
   
    .about-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 0 5px;
    }
   
    .stats {
    gap: 15px;
    margin-top: 20px;
    }
   
    .stat-number {
    font-size: 1.8rem;
    }
   
    .stat-label {
    font-size: 0.75rem;
    }
   
    .calendar-container iframe {
    height: 400px;
    }
   
    .calendar-container.locked {
    min-height: 400px;
    }
   
    .lock-icon {
    font-size: 2.5rem;
    }
   
    .calendar-lock-overlay h3 {
    font-size: 1.3rem;
    }
   
    .calendar-lock-overlay p {
    font-size: 0.9rem;
    }
   
    .lock-message {
    padding: 15px;
    }
   }
   
   /* Tablet specific styles */
   @media (max-width: 1024px) and (min-width: 769px) {
    .container {
    padding: 0 30px;
    }
   
    /* Hero Section */
    .hero-content h1 {
    font-size: 3rem;
    }
   
    .hero-content p {
    font-size: 1.1rem;
    }
   
    /* Services */
    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    }
   
    /* Payment Selection */
    .payment-selection {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    }
   
    .payment-card {
    padding: 30px 25px;
    }
   
    .payment-card h3 {
    font-size: 1.4rem;
    }
   
    .payment-card .price {
    font-size: 2.2rem;
    }
   
    /* Calendar */
    .calendar-container {
    padding: 25px;
    }
   
    .calendar-container iframe {
    height: 550px;
    }
   
    .calendar-container.locked {
    min-height: 550px;
    }
   
    .calendar-lock-overlay {
    padding: 50px 30px;
    }
   
    .lock-icon {
    font-size: 3.5rem;
    }
   
    .calendar-lock-overlay h3 {
    font-size: 1.6rem;
    }
   
    /* Carousel */
    .before-after {
    padding: 70px 0;
    }
   
    .carousel-container {
    padding: 0 20px;
    margin: 40px auto 0;
    }
   
    .carousel-wrapper {
    gap: 15px;
    }
   
    .carousel-slide {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    width: calc(50% - 8px);
    padding: 0 5px;
    }
   
    .before-after-item {
    border-radius: 12px;
    }
   
    .image-container {
    width: 100%;
    min-height: 400px;
    max-height: 500px;
    }
   
    .image-before,
    .image-after {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
    }
   
    .before-after-content {
    padding: 20px 18px;
    }
   
    .before-after-content h4 {
    font-size: 1.15rem;
    }
   
    .before-after-content p {
    font-size: 0.9rem;
    }
   
    .carousel-btn {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    }
   
    .carousel-nav {
    gap: 15px;
    margin-top: 30px;
    }
   
    /* Testimonials */
    .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    }
   }
   
   /* Desktop Styles - Optimized for vertical images */
   @media (min-width: 1025px) {
    .carousel-container {
    max-width: 1400px;
    }
   
    .carousel-slide {
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    padding: 0 10px;
    justify-content: center;
    }
   
    .before-after-item {
    max-width: 100%;
    margin: 0;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
   
    .image-container {
    width: 100%;
    }
   
    .image-before,
    .image-after {
    max-height: 650px;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #f8f8f8;
    }
   
    .before-after-content {
    padding: 20px 25px;
    }
   }
   
   /* High Resolution Displays (2560x1440 and above) */
   @media (min-width: 1920px) {
    .container {
    max-width: 1400px;
    }
   
    .hero-content h1 {
    font-size: 4.5rem;
    }
   
    .hero-content p {
    font-size: 1.4rem;
    }
   
    .section-title {
    font-size: 3.5rem;
    }
   
    .section-subtitle {
    font-size: 1.3rem;
    }
   
    .service-card h3 {
    font-size: 1.8rem;
    }
   
    .service-price {
    font-size: 2.5rem;
    }
   
    .service-description {
    font-size: 1.1rem;
    }
   
    .about-text h2 {
    font-size: 3rem;
    }
   
    .about-text p {
    font-size: 1.2rem;
    }
   
    .stat-number {
    font-size: 3.5rem;
    }
   
    .stat-label {
    font-size: 1.1rem;
    }
   
    .payment-card h3 {
    font-size: 1.8rem;
    }
   
    .payment-card .price {
    font-size: 2.5rem;
    }
   
    .testimonial-card {
    padding: 40px;
    }
   
    .testimonial-text {
    font-size: 18px;
    }
   
    .faq-question {
    font-size: 1.2rem;
    padding: 25px;
    }
   
    .faq-answer {
    font-size: 1.1rem;
    }
   }
   
   /* Ultra High Resolution Displays (2560x1440 specifically) */
   @media (min-width: 2560px) {
    .container {
    max-width: 1600px;
    }
   
    .hero-content h1 {
    font-size: 5.5rem;
    }
   
    .hero-content p {
    font-size: 1.6rem;
    max-width: 800px;
    }
   
    .section-title {
    font-size: 4rem;
    }
   
    .section-subtitle {
    font-size: 1.5rem;
    }
   
    .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    }
   
    .payment-selection {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    }
   
    .service-card {
    padding: 40px;
    }
   
    .service-card h3 {
    font-size: 2rem;
    }
   
    .service-price {
    font-size: 3rem;
    }
   
    .about-content {
    gap: 80px;
    }
   
    .about-text h2 {
    font-size: 3.5rem;
    }
   
    .about-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    }
   
    .stats {
    gap: 60px;
    }
   
    .stat-number {
    font-size: 4rem;
    }
   
    .stat-label {
    font-size: 1.2rem;
    }
   
    .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    }
   
    .before-after-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    }
   
    .calendar-container iframe {
    height: 700px;
    }
   
    .calendar-container.locked {
    min-height: 700px;
    }
   
    .lock-icon {
    font-size: 5rem;
    }
   
    .calendar-lock-overlay h3 {
    font-size: 2.5rem;
    }
   
    .calendar-lock-overlay p {
    font-size: 1.4rem;
    }
   }
   
   /* Video Modal */
   .video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
   }
   
   .video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
   }
   
   .video-modal iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
   }
   
   .close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
   }
   
   /* SweetAlert2 Custom Styles */
   .swal2-popup {
    font-family: 'Arial', sans-serif !important;
    border-radius: 12px !important;
    padding: 30px 25px 25px 25px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
   }
   
   /* Minimalist Audio Alert Styles */
   .audio-recommendation-popup {
    max-width: 450px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    padding: 40px 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
   }
   
   .audio-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #000 0%, #333 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
   }
   
   .audio-content {
    text-align: center !important;
    padding: 20px 0 !important;
    margin: 0 !important;
   }
   
   .audio-content p {
    color: #555 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    padding: 0 !important;
   }
   
   /* Icon inside the alert */
   .audio-icon {
    font-size: 48px;
    margin-bottom: 18px;
    animation: pulse 2s infinite;
   }
   
   .audio-confirm-btn {
    background: linear-gradient(135deg, #000 0%, #222 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
   }
   
   .audio-confirm-btn:hover {
    background: linear-gradient(135deg, #222 0%, #444 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
   }
   
   .audio-cancel-btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    padding: 14px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
   }
   
   .audio-cancel-btn:hover {
    background: #f5f5f5 !important;
    border-color: #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-1px) !important;
   }
   
   .swal2-actions {
    flex-direction: column !important;
    width: 100% !important;
    margin-top: 10px !important;
   }
   
   .swal2-actions button {
    margin: 0 !important;
    width: 100% !important;
   }
   
   .swal2-title {
    color: #000 !important;
    font-weight: 700 !important;
   }
   
   .swal2-html-container {
    color: #2c2c2c !important;
   }
   
   /* Responsive Audio Alert */
   @media (max-width: 768px) {
    .audio-recommendation-popup {
    max-width: 90% !important;
    margin: 0 15px !important;
    padding: 25px 20px 20px 20px !important;
    }
   
    .audio-title {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    }
   
    .audio-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    }
   
    .audio-confirm-btn,
    .audio-cancel-btn {
    padding: 12px 25px !important;
    font-size: 14px !important;
    margin-top: 15px !important;
    }
   }
   
   /* Animación pulse para el audio alert */
   @keyframes pulse {
    0%, 100% {
    transform: scale(1);
    opacity: 1;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.8;
    }
   }
   
   @media (max-width: 480px) {
    .audio-recommendation-popup {
    width: calc(100% - 28px) !important;
    max-width: 520px !important;
    margin: 0 14px !important;
    padding: 18px 16px !important;
    border-radius: 12px !important;
    }
   
    .audio-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    }
   
    .audio-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 6px !important;
    }
   
    .audio-icon {
    font-size: 64px !important;
    margin-bottom: 8px !important;
    }
   
    .audio-content p, .audio-text {
    font-size: 15px !important;
    text-align: center !important;
    color: #444 !important;
    line-height: 1.5 !important;
    }
   
    .swal2-actions {
    gap: 10px !important;
    }
   
    .audio-confirm-btn {
    padding: 14px 18px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
    }
   
    .audio-cancel-btn {
    padding: 12px 18px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    }
   }