* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #3a3a5a;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
}

.header {
    justify-content: space-between;
    background-color: #222236;
    align-items: center;
    padding: 10px 20px;
    display: flex;
}

.logo-img {
    vertical-align: middle;
    margin-right: 10px;
    height: 40px;
    width: 50px;
}

.nav-list {
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #ffff;
}

.nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
    padding: 5px 10px;
    font-weight: 500;
    color: white;
}

.nav-link:hover {
    text-shadow: #AAAAAA 0px 0px 5px;
    color: white;
}

.nav-link-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-shadow: none !important;
    background-color: #de1f6f;
    border-radius: 5px;
    padding: 5px 20px;
    color: white;
}

.nav-link-button:hover {
    text-shadow: none !important;
    background-color: #a11851;
    transform: scale(1.05);
}

.menu-toggle {
    flex-direction: column;
    cursor: pointer;
    display: none;
    gap: 5px;
}

.bar {
    background-color: white;
    border-radius: 4px;
    width: 30px;
    height: 4px;
}

.side-menu {
    transition: right 0.3s ease;
    padding: 50px 20px 0 20px;
    background-color: #222;
    font-size: 1.05rem;
    position: fixed;
    right: -250px;
    width: 250px;
    height: 100%;
    top: 0;
}

.side-menu.active {
    right: 0;
}

.side-menu-list {
    flex-direction: column;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.side-menu-list li {
    width: 100%;
}

.side-menu-list .nav-link {
    transition: background-color 0.3s ease;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-align: left;
    color: white;
    display: block;
    width: 100%;
}

.side-menu-list .nav-link:hover {
    background-color: #444;
}

.side-menu-list .nav-link-button {
    background-color: #de1f6f;
    width: fit-content;
    border-radius: 6px;
    padding: 6px 14px;
    margin-left: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.side-menu-list .nav-link-button:hover {
    background-color: #a11851;
}

.close-btn {
    position: absolute;
    cursor: pointer;
    font-size: 30px;
    color: white;
    right: 20px;
    top: 20px;
}

.main-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.hero {
    margin-bottom: 80px;
    text-align: center;
}

.hero h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #ffffff;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #dcdcdc;
}

.cta-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #de1f6f;
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
}

.cta-button:hover {
    background-color: #a11851;
    transform: scale(1.05);
}

.services {
    margin-bottom: 80px;
}

.services h3 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
}

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

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #222236;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.5;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.why-us {
    background-color: #222236;
    border-radius: 12px;
    padding: 40px 30px;
}

.why-us h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.why-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.why-list li {
    margin-bottom: 12px;
    color: #dcdcdc;
    font-size: 1rem;
}

.whatsapp-float {
    animation: whatsapp-float 3s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    display: flex;
    z-index: 1000;
    height: 55px;
    bottom: 20px;
    width: 55px;
    left: 20px;
    
}

.whatsapp-float img {
    height: 50px;
    width: 50px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.footer {
    border-top: 1px solid #222236;
    justify-content: space-between;
    background-color: #222236;
    align-items: center;
    text-align: center;
    padding: 15px 20px;
    margin-top: auto;
    flex-wrap: wrap;
    font-size: 14px;
    color: white;
    display: flex;
}

.footer-left {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 15vh;
    display: flex;
    gap: 5px;
    flex: 1;
}

.footer-text, .footer-link {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-link {
    text-decoration: none;
    color: #AAAAAA;
}

.footer-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.footer-social {
    align-items: center;
    color: #ffffff;
    margin-top: 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.footer-social span {
    font-weight: 500;
}

.social-icon {
    transition: transform 0.3s ease;
    height: 24px;
    width: 24px;
}

.social-icon:hover {
    transform: scale(1.2);
}

/************ Quienes Somos ************/
.image-slider {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    margin: 0 auto 30px auto;
    border-radius: 20px;
    position: relative;
    max-width: 700px;
    overflow: hidden;
    cursor: grab;
    width: 90%;
}

.slides {
    transition: transform 0.7s ease-in-out;
    display: flex;
}

.slides img {
    pointer-events: none;
    border-radius: 20px;
    object-fit: cover;
    user-select: none;
    flex-shrink: 0;
    height: 300px;
    width: 100%;
}

.image-slider:active {
      cursor: grabbing;
}

.main-quienes-somos {
    background: linear-gradient(135deg, #2e2e4a, #3a3a5a);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease forwards;
    text-align: justify;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px auto;
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.8;
}

.main-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.main-text:first-of-type {
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
    font-size: 1.3rem;
    color: #f0f0f0;
}

.form-contact   {
    color: #FFFFFF;
}

.faq-section {
    background: linear-gradient(135deg, #2e2e4a, #3a3a5a);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 800px;
    color: white;
    padding: 20px;
}

.faq-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

.faq-item {
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.faq-question {
    padding-right: 25px;
    position: relative;
    font-weight: 600;
    cursor: pointer;
}

.faq-question::after {
    transition: transform 0.3s ease;
    position: absolute;
    font-size: 1.2rem;
    content: '+';
    right: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-left: 10px;
    overflow: hidden;
    font-size: 1rem;
    margin-top: 5px;
    max-height: 0;
}

.faq-item.active .faq-answer {
    padding: 5px 10px 10px 10px;
    max-height: 200px;
}

/************ Eventos ************/
.main-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.main-text:first-of-type {
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
    font-size: 1.3rem;
    color: #f0f0f0;
}

.main-cards {
    justify-content: center;
    align-items: stretch;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 30px auto;
    flex-wrap: wrap;
    display: flex;
    gap: 24px;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 320px;
    padding: 24px;
    display: flex;
    width: 320px;
}

.card {
    transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms cubic-bezier(.2,.8,.2,1);
}

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

.card-img {
    margin-bottom: 16px;
    border-radius: 8px;
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.card-title {
    font-size: 1.25rem;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.card-text {
    text-justify: inter-word;
    text-align: justify;
    font-size: 0.95rem;
    margin: 0 0 16px 0;
    color: #dcdcdc;
    line-height: 1.4;
    hyphens: auto;
}

.card-btn {
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    will-change: transform, box-shadow, opacity;
    background: #de1f6f;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.card-btn:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transform: translateY(-4px) scale(1.03);
    background: #a11851;
}

.card-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.card-btn:focus-visible {
    outline: 3px solid rgba(222,31,111,0.18);
    outline-offset: 3px;
}

.offer-panel {
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
    flex-direction: column;
    transform-origin: top;
    align-items: center;
    margin-top: 12px;
    overflow: hidden;
    display: flex;
    max-height: 0;
    width: 100%;
    opacity: 0;
}

.offer-panel.show {
    transform: translateY(0);
    max-height: 240px;
    opacity: 1;
}

.offer-text {
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-align: center;
    color: #f0f0f0;
}

.offer-buttons {
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
    gap: 8px;
}

.sub-btn {
    transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease;
    border: 1px solid rgba(255,255,255,0.08);
    background: #ffffff10;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

.sub-btn {
    justify-content: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sub-btn:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.04);
    transform: translateY(-3px);
}

.sub-btn:active { 
    transform: translateY(-1px);
}

.card-btn.disabled + .offer-panel {
    display: none;
}

.card-btn.disabled {
    background: #8e8e8e;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
    color: #e9e9e9;
    transform: none;
    opacity: 0.85;
}

.card-btn.disabled:hover {
    background: #8e8e8e;
    transform: none;
}

.card-status {
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 6px 10px;
    margin-top: 12px;
    color: #cfcfcf;
}


/************ Cotizar ************/
.contact-hours {
    background-color: rgba(34, 34, 54, 0.85);
    margin: 40px auto 40px auto;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    max-width: 600px;
    color: white;
}

.contact-hours h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-hours p {
    font-size: 1.1rem;
    margin: 5px 0;
}

.contact-cards {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.contact-card {
    transition: transform 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    width: 200px;
}

.contact-card img {
    object-fit: contain;
    margin-bottom: 10px;
    height: 80px;
    width: 80px;
}

.contact-card p {
    font-size: 1rem;
    color: white;
}

.contact-card:hover {
    transform: scale(1.05);
}


/************ Sección Clientes ************/
.clientes {
    text-align: center;
    padding: 60px 20px;
    background: none;
    color: white;
}

.clientes h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 2rem;
}

.clientes p {
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.5;
    font-size: 1rem;
}

/************ Galería Clientes ************/
.clientes-galeria {
    margin-top: 50px;
}

.clientes-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.cliente-logo {
    transition: transform 0.25s ease;
    justify-content: center;
    border-radius: 12px;
    align-items: center;
    padding: 20px;
    display: flex;
}

.cliente-logo img {
    object-fit: contain;
    max-height: 80px;
    max-width: 100%
}

.cliente-logo:hover {
    transform: translateY(-4px);
}

/************ Aviso Legal ************/
.aviso-legal {
    background-color: rgba(34, 34, 54, 0.85);
    border-radius: 16px;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 40px auto;
    color: white;
}

.aviso-legal-contenido h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.2rem;
}

.aviso-legal-contenido section {
    margin-bottom: 30px;
}

.aviso-legal-contenido h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0aa3bf;
}

.aviso-legal-contenido p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

.legal-ad{
    color: #ffffff;
}

/************ Media Queries ***********/
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .services h3,
    .why-us h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 834px) {
    .nav-list {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 760px) {
    .footer {
        flex-direction: column;
        gap: 10px;
    }
    .footer-left, .footer-social {
        justify-content: center;
        padding-left: 5vh;
    }
}

/************ Animation ************/
@keyframes whatsapp-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}


/* ========= Scrollbar Global ========= */
* {
    scrollbar-color: #de1f6f #222236;
    scrollbar-width: thin;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #222236;
}
::-webkit-scrollbar-thumb {
    background-color: #de1f6f;
    border: 2px solid #222236;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #a11851;
}