/* style.bundle.css - generado automáticamente: concatenación de style.css + index-adicional.css + index-adicional-enhanced.css */

/* ------------------------- style.css (base) ------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aurum-gold: #D2A346;
    --aurum-bronze: #A88B53;
    --aurum-light: #E4C26A;
    --vision-blue: #457DD0;
    --deep-vision: #54709D;
    --light-vision: #6AA7E2;
    --neutral-white: #F2F1EF;
    --dark-slate: #222933;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #e5e5e5;
    --color-gray-dark: #4a4a4a;
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Loading Spinner */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(210, 163, 70, 0.3);
    border-top-color: var(--aurum-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    color: var(--aurum-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--aurum-gold);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--aurum-light);
    transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: jump-shaking 6s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 4: Logo container*/
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 120px;
    overflow: visible;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-black);
}

.logo-icon {
    padding-top: 2rem;
    height: 14rem;
    width: auto;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--color-white);
    z-index: 2;
}

.logo-text .gold {
    color: var(--aurum-gold);
    font-weight: 500;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--aurum-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.8rem 2rem;
    color: var(--color-gray-dark);
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    color: var(--aurum-gold);
    background: var(--neutral-white);
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    transition: var(--transition);
    padding: 8rem 5%;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
}


.mobile-menu a,
.mobile-menu-toggle {
    text-decoration: none;
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.mobile-submenu.active {
    max-height: 300px;
    margin-top: 1rem;
}

.mobile-submenu a {
    font-size: 1.3rem;
    padding: 0.8rem 0;
    display: block;
}

.menu-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-arrow.active {
    transform: rotate(180deg);
}

.nav-highlight {
    animation: 1s infinite alternate ease-out breathing-color--highliths;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(155deg, var(--deep-vision) 0%, var(--dark-slate) 50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 41, 51, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 2rem;
    max-width: 900px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--aurum-gold);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--aurum-gold);
}

.cta-button:hover {
    background: var(--aurum-light);
    border-color: var(--aurum-light);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 163, 70, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    /* puedes cambiar el color */
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-in-out;
}

.scroll-down span {
    display: block;
    opacity: 0.8;
}

.scroll-down .arrow {
    width: 50px;
    height: 50px;
    border-left: 2px solid #ede8e8;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin: 0 auto;
    animation: bounce 1.5s infinite;
}


/* Sections */
section {
    padding: 8rem 5%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
}

.section-header.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray-dark);
    letter-spacing: 1px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    opacity: 0;
    transform: translateY(60px);
}

.portfolio-grid.visible {
    animation: fadeInUp 1s ease forwards;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(34, 41, 51, 0.9) 0%, rgba(34, 41, 51, 0) 100%);
    color: var(--color-white);
    opacity: 1;
    transition: var(--transition);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

/* Services */
#servicios {
    background: var(--neutral-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(69, 125, 208, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--aurum-gold), var(--aurum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-white);
    }

    .service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features i {
    color: var(--aurum-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}
    /* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.about-content.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.about-image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--color-gray-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.testimonial-card {
    padding: 3rem;
    background: var(--neutral-white);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 400;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.contact-container.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.2rem;
    border: 1px solid var(--color-gray);
    background: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--aurum-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1.2rem 3rem;
    background: var(--aurum-gold);
    color: var(--color-white);
    border: 2px solid var(--aurum-gold);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--aurum-light);
    border-color: var(--aurum-light);
    color: var(--color-black);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: var(--dark-slate);
    color: var(--color-white);
    text-align: center;
    padding: 4rem 5% 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    border-color: var(--aurum-gold);
    color: var(--aurum-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--aurum-gold);
}


/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-slate);
    color: var(--color-white);
    padding: 2rem 5%;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--aurum-gold);
    color: var(--color-white);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* ============================================= */
/* ESTILOS ESPECIFICOS PARA PORTAFOLIO.HTML */
/* ============================================= */

/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-btn {
    background: transparent;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-black);
    font-family: var(--font-primary);
    font-weight: 300;
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--aurum-gold);
    color: var(--aurum-gold);
}

/* Portfolio Grid Detailed - Corregido para móviles */
.portfolio-detailed-grid {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    overflow: hidden;
    width: 100%;
}

.portfolio-detailed-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.portfolio-detailed-item.reverse {
    direction: rtl;
}

.portfolio-detailed-item.reverse>* {
    direction: ltr;
}

.portfolio-detailed-info {
    width: 100%;
    padding: 0 1rem;
}

.portfolio-detailed-info h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.project-category {
    color: var(--aurum-gold);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.project-description {
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.project-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
}

/* Carousel Container - Corregido para no desbordarse */
.portfolio-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.portfolio-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    width: 100%;
    will-change: transform;
}

.portfolio-carousel.dragging {
    cursor: grabbing;
    transition: none;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 600px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Carousel Controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-black);
    transition: var(--transition);
    opacity: 0;
}

.portfolio-carousel-container:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: var(--aurum-gold);
    color: var(--color-white);
}

.carousel-arrow.prev {
    left: 2rem;
}

.carousel-arrow.next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator-dot.active {
    background: var(--aurum-gold);
    border-color: var(--color-white);
    transform: scale(1.2);
}

.indicator-dot:hover {
    background: var(--aurum-light);
}

/* Swipe Indicator */
.swipe-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    pointer-events: none;
    opacity: 0;
    animation: pulseSwipe 2s ease-in-out infinite;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.indicator-dot:hover {
    background: var(--aurum-light);
}

/* Video Container - Corregido */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-vision) 0%, var(--dark-slate) 100%);
    background-size: cover;
    background-position: center;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(210, 163, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--aurum-gold);
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--aurum-gold);
    border-color: var(--aurum-gold);
    transform: rotate(90deg);
}

/* ============================================
   ESTILOS DEL COTIZADOR
   ============================================ */

/* HERO SECTION */
.cotizador-hero {
    background: linear-gradient(135deg, #54709D 0%, #222933 100%);
    color: white;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cotizador-hero h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    color: #D2A346;
}

.cotizador-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* COTIZADOR SECTION */
.cotizador-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.cotizador-container {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(20px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* PROGRESS BAR */
.progress-bar {
    display: grid;
    justify-content: space-between;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #D2A346;
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #54709D;
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
    position: absolute;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.step.active .step-label {
    color: #D2A346;
    font-weight: bold;
}

/* FORM */
.cotizador-form {
    display: grid;
    background: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-step {

    display: none;
    animation: fadeInUp 0.5s;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    color: #54709D;
    margin-bottom: 10px;
    font-size: 2rem;
}

.step-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* EVENTO CARDS */
.evento-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;


}

.evento-card {
    background: #f8f8f8;
    padding: 25px;
    border: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    /* que ocupe toda la columna */
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.evento-card.selected {
    border-color: #D2A346;
    background: #FFF9E6;
}

.evento-card i {
    font-size: 3rem;
    color: #D2A346;
    margin-bottom: 15px;
}

.evento-card h3 {
    margin-bottom: 10px;
    color: #54709D;
}

.evento-card p {
    color: #666;
    font-size: 0.9rem;
}

/* FORM GROUPS */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2A346;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* MONEDA SELECTOR */
.moneda-selector {
    background: #f8f8f8;
    padding: 20px;
    margin-bottom: 30px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: auto;
}

/* SERVICIOS CONTAINER */
.servicios-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.addons-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);

}

.servicio-card {
    background: #f8f8f8;
    padding: 25px;
    border: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.addon-card {
    background: #f8f8f8;
    padding: 25px;
    border: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.servicio-card:hover,
.addon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.servicio-card.selected,
.addon-card.selected {
    border-color: #D2A346;
    background: #FFF9E6;
}

.servicio-card.popular {
    border-color: #54709D;
}

.servicio-card.popular::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #54709D;
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.servicio-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.servicio-card h3 {
    color: #54709D;
    margin-bottom: 5px;
    background-color: #000000;
}

.servicio-horas {
    color: #D2A346;
    font-weight: bold;
}

.servicio-precio {
    text-align: right;
}

.precio-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D2A346;
}

.servicio-descripcion,
.addon-descripcion {
    color: #666;
    margin-bottom: 10px;
    }

.servicio-entregables {
    background: white;
    padding: 10px;
    margin: 5px;
    font-size: 0.9rem;
    color: #333;
}

/* ADDON CARD */
.addon-card {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 20px;
}

.addon-info h4 {
    color: #54709D;
    margin-bottom: 5px;
}

.addon-precio .precio-amount {
    font-size: 1.3rem;
}

/* NAVIGATION BUTTONS */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #D2A346;
    color: white;
}

.btn-primary:hover {
    background: #E4C26A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 163, 70, 0.3);
}

.btn-secondary {
    background: #54709D;
    color: white;
}

.btn-secondary:hover {
    background: #6989B8;
}

.btn-success {
    background: #4CAF50;
    color: white;
}

.btn-success:hover {
    background: #66BB6A;
}

/* SIDEBAR */
.cotizador-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 20px;
    background: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-sticky h3 {
    color: #54709D;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #D2A346;
}

.sidebar-summary {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-item strong {
    color: #333;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
}

.summary-total {
    padding-top: 15px;
    border-top: 2px solid #D2A346;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    font-size: 1.1rem;
    font-weight: bold;
}

.total-amount {
    font-size: 1.8rem !important;
    color: #D2A346 !important;
}

.sidebar-note {
    background: #f8f8f8;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: start;
}

.sidebar-note i {
    color: #D2A346;
    margin-top: 2px;
}

.sidebar-note p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* RESUMEN */
.resumen-container {
    background: #f8f8f8;
    padding: 30px;
}

.resumen-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
}

.resumen-section h3 {
    color: #54709D;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resumen-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.resumen-item:last-child {
    border-bottom: none;
}

.resumen-total {
    background: white;
    padding: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.1rem;
}

.total-row.total {
    border-top: 2px solid #D2A346;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D2A346;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    animation: slideIn 0.3s;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-content.success .modal-icon {
    color: #4CAF50;
}

.modal-content.error .modal-icon {
    color: #f44336;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.modal-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

/* ======================================
   ESTILOS COMPLEMENTARIOS PARA COTIZADOR 
   ======================================

/* CONTENEDORES DE SERVICIOS Y ADDONS */
.servicios-container,
.addons-container {
    margin-bottom: 40px;
}

.servicios-container h3,
.addons-container h3 {
    color: #54709D;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D2A346;
}



.servicios-container h3:first-child,
.addons-container h3:first-child {
    margin-top: 0;
}

/* BADGE POPULAR */
.popular-badge {
    position: relative;
    max-width: 120px;
    top: -12px;
    right: 20px;
    background: #54709D;
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
}

.addon-card.popular .popular-badge {
    background: #D2A346;
}

/* CONTENIDO DE LAS CARDS DE SERVICIOS */
.servicio-card h4,
.addon-card h4 {
    color: #54709D;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.servicio-card .descripcion,
.addon-card .descripcion {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.servicio-card .precio,
.addon-card .precio {
    font-size: 1.6rem;
    font-weight: bold;
    color: #D2A346;
    margin: 15px 0;
}

.servicio-card .entregables,
.addon-card .entregables {
    background: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    margin-top: 10px;
}

.servicio-card .incluye {
    font-size: 0.85rem;
    color: #54709D;
    margin-top: 10px;
    font-style: italic;
}

/* OPCIONES PARA MONEDA */
.radio-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.radio-option:hover {
    border-color: #D2A346;
    background: #FFF9E6;
}

.radio-option input[type="radio"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #D2A346;
}

.radio-option input[type="radio"]:checked {
    accent-color: #D2A346;
}

.radio-option span {
    font-weight: 500;
    color: #333;
}

/* AJUSTES PARA GRID DE FORM */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* RESUMEN - AJUSTES */
.resumen-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resumen-section li {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.resumen-section li:hover {
    background: #f8f8f8;
}

.resumen-section li:last-child {
    border-bottom: none;
}

.resumen-section li strong {
    color: #54709D;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.resumen-section li small {
    color: #666;
    font-size: 0.9rem;
}

/* MODAL AJUSTES */
.modal {
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.servicio-card,
.addon-card {
    animation: slideInRight 0.3s ease-out;
}

/* MEJORAS VISUALES */
.servicio-card.selected::after,
.addon-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #D2A346;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ESTADOS DE HOVER MEJORADOS */
.evento-card {
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.evento-card.selected {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(210, 163, 70, 0.3);
}

/* BOTONES - ESTADOS ADICIONALES */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* SIDEBAR - MEJORAS */
.sidebar-sticky {
    border-radius: 8px;
}

.sidebar-summary {
    font-size: 0.95rem;
}

/* PRECIO - FORMATEO */
.precio-mxn,
.precio-usd {
    transition: opacity 0.3s;
}

/* UTILIDADES */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-3 {
    padding: 1.5rem;
}

/* ACCESIBILIDAD */
.servicio-card:focus,
.addon-card:focus,
.evento-card:focus {
    outline: 3px solid #D2A346;
    outline-offset: 2px;
}

button:focus {
    outline: 3px solid #D2A346;
    outline-offset: 2px;
}

/* LOADING STATE */
.btn .fa-spinner {
    animation: spin 1s linear infinite;
}


/* LOADING */
.loading {
    text-align: center;
    padding: 40px;
    color: #D2A346;
    font-size: 1.2rem;
}

.loading i {
    margin-right: 10px;
}

/* UTILITIES */
.mt-4 {
    margin-top: 2rem;
}

/* Animations */
@keyframes jump-shaking {
    0% {
        transform: translateX(0) translateY(0) rotate(0);
    }

    1% {
        transform: translateX(0) translateY(0) rotate(0);
    }

    4.17% {
        transform: translateY(-9px) rotate(0);
    }

    5.83% {
        transform: translateY(-9px) rotate(17deg);
    }

    9.17% {
        transform: translateY(-9px) rotate(-17deg);
    }

    10.83% {
        transform: translateY(-9px) rotate(17deg);
    }

    12.5% {
        transform: translateY(-9px) rotate(-17deg);
    }

    16.67% {
        transform: translateY(0) rotate(0);
    }

    16.68% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes pulseSwipe {
    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(8px) rotate(-45deg);
    }

    60% {
        transform: translateY(4px) rotate(-45deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes breathing-color--highliths {
    from {
        background-color: var(--aurum-gold);
    }

    to {
        background-color: var(--color-white);
    }
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================= */
/* RESPONSIVE - CORRECCIONES CRÍTICAS */
/* ============================================= */
@media (max-width: 1500px) {
    .logo-icon {
        opacity: 0%;
    }
}

@media (max-width: 1200px) {
    .cotizador-container {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
    }
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    nav {
        justify-content: center;
    }

    .logo-container {
        position: absolute;
        left: 5%;
    }

    .swipe-indicator {
        display: none;
    }

    .logo-link:hover .logo-text {
        opacity: 1;
        max-width: 300px;
        margin-left: 0.5rem;
    }
}

@media (max-width: 1023px) {
    .carousel-arrow {
        display: none;
    }

    .swipe-indicator {
        opacity: 0.8;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        max-height: 80px;
        padding: 0;
        opacity: 100%;
    }
}

/* RESPONSIVE - AJUSTES ADICIONALES */
@media (max-width: 968px) {

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cotizador-container {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-option {
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 5%;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-content {
        max-width: 90%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicice-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .addons-grid,
    .servicios-grid,
    .service-container,
    .addons-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio detailed - corregido para móviles */
    .portfolio-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-detailed-item.reverse {
        direction: ltr;
    }

    .portfolio-detailed-info {
        padding: 0;
    }

    .portfolio-detailed-info h3 {
        font-size: 1.5rem;
    }

    .project-description {
        font-size: 1rem;
    }

    .carousel-slide {
        height: 400px;
    }

    .portfolio-detailed-grid {
        gap: 5rem;
    }

    .portfolio-categories {
        gap: 1rem;
    }

    .category-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cotizador-hero h1 {
        font-size: 2rem;
    }

    .progress-bar {

        flex-wrap: wrap;
        gap: 15px;
    }

    .step {
        max-width: 100%;
    }

    .form-step h2 {
        font-size: 1.5rem;
    }

    .evento-cards {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .addon-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-next.fixed-mobile {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        z-index: 999;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 0.3s ease-out;
    }
        .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .evento-cards {
        grid-template-columns: 1fr;
    }

    /* Make eventos-grid more compact on small devices */
    .eventos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .eventos-grid .evento-type-card {
        padding: 0.9rem 0.8rem;
        border-radius: 6px;
    }

    .evento-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        height: 100 px;
        padding: 0.5rem 1rem;
    }

    .evento-card i {
        padding-left: 1rem;
        padding-top: 10px;
        grid-row: 1/3;
        grid-column: 1;
    }

    .evento-card h3,
    .evento-card p {
        padding-left: 3rem;
    }

    .evento-card h3 {
        grid-row: 1;
        grid-column: 2;
        margin: 0;
        padding-top: 1rem;
    }

    .evento-card p {
        grid-row: 2;
        grid-column: 2;
        margin: 0;
        padding-bottom: 1rem;
    }

    /* Reorganize evento-type-card for compact horizontal layout on small screens */
    .eventos-grid .evento-type-card,
    .evento-type-card {
        display: flex;
        flex-direction: row;
        /* center items vertically so the icon aligns in the middle */
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 0.75rem;
        text-align: left;
        min-height: auto;
    }

    .evento-type-card .evento-icon {
        width: 44px;
        height: 44px;
        margin: 1rem;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* ensure the icon itself stays centered inside the card */
        align-self: center;
    }

    .evento-type-card .evento-icon i {
        font-size: 2rem;
    }

    .evento-type-card h3 {
        font-size: 1rem;
        margin: 0 0 0.25rem 0;
        line-height: 1.1;
    }

    .evento-type-card p {
        font-size: 0.85rem;
        line-height: 1.2;
        margin: 0;
        color: var(--color-gray-dark);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* push the link to the far right of the card */
    .evento-type-card .evento-link {
        margin-left: auto;
        align-self: center;
        width: 5.5rem;
        height: 1.8rem;
        font-size: 0.8rem;
        padding: 0 0.4rem;
    }

    /* Very small screens: tighten further */
    @media (max-width: 480px) {
        .eventos-grid .evento-type-card,
        .evento-type-card {
            flex-direction: row;
            gap: 0.5rem;
            padding: 0.6rem 0.5rem;
        }

        .evento-type-card .evento-icon {
            /* make the icon larger on very small screens and keep it vertically centered */
            width: 56px;
            height: 56px;
            flex: 0 0 56px;
        }

        .evento-type-card .evento-icon i {
            font-size: 1.35rem;
        }

        .evento-type-card h3 {
            font-size: 0.95rem;
        }

        .evento-type-card p {
            font-size: 0.78rem;
        }

        .evento-type-card .evento-link {
            width: 5rem;
            height: 1.6rem;
            font-size: 0.72rem;
        }
    }


    .step-label {
        font-size: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .portfolio-detailed-info h3 {
        font-size: 1.3rem;
    }

    .carousel-slide {
        height: 300px;
    }

    .carousel-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
    }

    /* Compact eventos-grid for very small devices */
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.6rem;
    }

    .eventos-grid .evento-type-card {
        padding: 0.6rem 0.6rem;
        border-radius: 4px;
    }
}

/* PRINT STYLES */
@media print {

    .form-navigation,
    .cotizador-sidebar,
    .btn {
        display: none !important;
    }

    .resumen-container {
        background: white !important;
    }

    .form-step {
        display: block !important;
        page-break-after: always;
    }
}


/* ------------------------- index-adicional.css ------------------------- */

/* ===========================================
   NUEVAS SECCIONES - TIPOS DE EVENTOS
   =========================================== */

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evento-type-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-rows: repeat(auto-fit minmax(280px));
}

.evento-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(210, 163, 70, 0.2);
}

.evento-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.evento-icon i {
    font-size: 2.5rem;
    color: var(--aurum-gold);
    transition: var(--transition);
}

.evento-type-card:hover .evento-icon i {
    transform: scale(1.1);
    color: var(--aurum-bronze);
}

.evento-type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--dark-slate);
}

.evento-type-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.evento-link {
    width: 8rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: var(--aurum-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.evento-link:hover {
    background-color: var(--aurum-light);
    color: var(--dark-slate);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(210, 163, 70, 0.2);
    gap: 0.8rem;
}

/* Animación especial para los anillos de boda */
.rings-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond {
    width: 12px;
    height: 12px;
    background: var(--aurum-gold);
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
    box-shadow: 0 0 10px rgba(210, 163, 70, 0.5);
}

.ring {
    width: 35px;
    height: 35px;
    border: 3px solid var(--aurum-gold);
    border-radius: 50%;
    position: absolute;
    transition: var(--transition);
}

.ring-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ring-right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.evento-type-card:hover .ring-left {
    transform: translateY(-50%) translateX(-3px);
}

.evento-type-card:hover .ring-right {
    transform: translateY(-50%) translateX(3px);
}

.evento-type-card:hover .diamond {
    transform: translateX(-50%) rotate(45deg) scale(1.2);
}

/* ===========================================
   PAQUETES MEJORADOS
   =========================================== */

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.package-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(210, 163, 70, 0.25);
}

.package-card.featured {
    border: 3px solid var(--aurum-gold);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--aurum-gold);
    color: var(--color-white);
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.package-header {
    display: flex;
    flex-direction: column  ;
    height: 210px;
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--deep-vision) 100%);
    color: var(--color-white);
    padding: 2.5rem 2rem;
    text-align: center;
    justify-content: center;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, var(--aurum-bronze) 0%, var(--aurum-light) 100%);
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.package-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray);
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--aurum-gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-ideal {
    background: var(--neutral-white);
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    font-style: italic;
    margin-top: 1rem;
}

.package-button {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1rem;
    background: var(--dark-slate);
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--dark-slate);
}

.package-button:hover {
    background: transparent;
    color: var(--dark-slate);
}

.package-card.featured .package-button {
    background: var(--aurum-gold);
    border-color: var(--aurum-gold);
}

.package-card.featured .package-button:hover {
    background: transparent;
    color: var(--aurum-gold);
}

.packages-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--neutral-white);
    border-left: 4px solid var(--aurum-gold);
    border-radius: 6px;
}

.packages-note p {
    margin: 0;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.packages-note i {
    color: var(--aurum-gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* (index-adicional.css continues...) */

/* ------------------------- index-adicional-enhanced.css ------------------------- */

/* Estilos adicionales para index.html - Mejoras y nuevas funcionalidades */

/* ========================== */
/* BOTÓN WHATSAPP MEJORADO */
/* ========================== */
.whatsapp-float.enhanced {
    width: 70px;
    height: 70px;
    font-size: 40px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s infinite, whatsapp-bounce 1s ease-in-out infinite;
    overflow: visible;
}

.whatsapp-float.enhanced:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Texto adicional para el botón de WhatsApp */
.whatsapp-text {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, right 0.3s;
}

.whatsapp-float.enhanced:hover .whatsapp-text {
    opacity: 1;
    right: 85px;
}

/* (index-adicional-enhanced.css continues...) */
