/* Base Styles */
:root {
    --primary-bg: #0A192F;
    --secondary-bg: #1A1A1A;
    --neon-green: #00FF88;
    --electric-blue: #00F3FF;
    --white: #FFFFFF;
    --text-gray: #CCD6F6;
    --dark-gray: #2D2D2D;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
}

/*section {
    overflow-x: hidden;
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-bg);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 15px 0;
}

a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--neon-green);
}

ul {
    list-style: none;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--neon-green);
    margin: 15px 0;
}

.highlight {
    color: var(--neon-green);
    font-weight: 700;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img,
.footer-logo img {
    max-width: 120px;
    height: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-green);
    transition: var(--transition);
}

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

.language-selector {
    margin-left: 15px;
}

.language-selector button {
    background: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 5px;
}

.language-selector button.active {
    color: var(--neon-green);
    font-weight: 500;
}

.language-selector button:hover {
    color: var(--neon-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px;
}

.language-selector-mobile {
    margin-top: 30px;
}

.language-selector-mobile button {
    background: none;
    color: var(--text-gray);
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px;
}

.language-selector-mobile button.active {
    color: var(--neon-green);
    font-weight: 500;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--neon-green);
    color: var(--primary-bg);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    background: var(--electric-blue);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4);
    transform: translateY(-3px);
}

.cta-button svg {
    margin-left: 10px;
    transition: var(--transition);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.hero-tech-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, var(--neon-green) 25%, var(--electric-blue) 50%, var(--neon-green) 75%);
    mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='smallGrid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='%23FFFFFF' stroke-width='0.5'/%3E%3C/pattern%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Crect width='100' height='100' fill='url(%23smallGrid)'/%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)' /%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header .accent-line {
    margin: 15px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-green);
    transition: var(--transition);
    z-index: -1;
}

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

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(10, 25, 47, 0.5);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background: rgba(10, 25, 47, 0.8);
}

.industry-icon {
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* 3D Sectors Animation */
.industry-animation-container {
    position: relative;
    width: 100%;
    height: 480px;
    perspective: 1000px;
    overflow: hidden;
    margin: 40px 0;
}

.sector-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    cursor: pointer;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    transition: color 0.3s;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.sector-item:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.2);
}

.sector-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.9);
    border-radius: 8px;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    text-align: left;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    overflow-y: auto;
    max-height: 90%;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sector-description.active {
    opacity: 1;
    pointer-events: all;
}

.sector-description h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.sector-description p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.sector-benefits {
    margin: 20px 0;
}

.sector-benefits h4 {
    color: var(--electric-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sector-benefits ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.sector-benefits li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.back-button {
    background: var(--neon-green);
    color: var(--primary-bg);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin-top: 10px;
}

.back-button:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
}

/* Video Background for Industry Section */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    z-index: 1;
}

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

/* Testimonial Section */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 30px;
}

.testimonial-container {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    padding: 40px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transition: var(--transition);
    min-height: 240px;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.testimonial-content {
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    color: var(--neon-green);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.client-logo {
    width: 60px;
    height: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 5px;
}

.client-logo svg {
    width: 100%;
    height: auto;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    background: transparent;
    border: 1px solid var(--text-gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 10px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-green);
}

.prev-btn:hover svg path,
.next-btn:hover svg path {
    stroke: var(--neon-green);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--neon-green);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
}

.contact-detail svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background: rgba(10, 25, 47, 0.3);
    border-radius: 8px;
    padding: 40px;
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--white);
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(204, 214, 246, 0.3);
    border-radius: 4px;
    background: rgba(10, 25, 47, 0.3);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.submit-button {
    background: var(--neon-green);
    color: var(--primary-bg);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.form-response {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-response.success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    display: block;
}

.form-response.error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    display: block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--electric-blue);
    transform: translateY(-5px);
}

.back-to-top svg {
    stroke: var(--primary-bg);
}

/* Footer */
footer {
    background: var(--secondary-bg);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-logo p {
    margin-top: 10px;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.5);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--neon-green);
    transform: translateY(-3px);
}

.social-icon:hover svg path {
    stroke: var(--primary-bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(204, 214, 246, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Global Impact Section */
#impacto-global {
    /*background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);*/
    position: relative;
    overflow: hidden;
}

#impacto-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300FF88' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;*/
    opacity: 0.3;
    z-index: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 25, 47, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    animation: pulse-icon 3s ease-in-out infinite;
}

.stat-item:nth-child(even) .stat-icon svg {
    animation-delay: 1.5s;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
    display: inline-block;
    margin-left: 5px;
    animation: glow-suffix 2s ease-in-out infinite alternate;
}

@keyframes glow-suffix {
    from {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
    }
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Responsive adjustments for impact section */
@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }


    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        /* Esto cambia el layout a una sola columna */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    #hero {
        padding-top: 100px;
        /* Ajusta este valor si es necesario */
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Calendar Booking Section *****************************************************************/
#reserva-cita {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

#reserva-cita::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300FF88' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v40c11.046 0 20-8.954 20-20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.calendar-widget {
    background: rgba(10, 25, 47, 0.4);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.calendar-nav {
    background: transparent;
    border: 1px solid rgba(204, 214, 246, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.calendar-nav:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
}

.calendar-nav:hover svg path {
    stroke: var(--neon-green);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day-header {
    text-align: center;
    padding: 10px 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    color: var(--text-gray);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
}

.calendar-day.selected {
    background: var(--neon-green);
    color: var(--primary-bg);
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--dark-gray);
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day.other-month {
    color: var(--dark-gray);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(0, 243, 255, 0.2);
    color: var(--electric-blue);
    font-weight: 600;
}

.time-slots {
    background: rgba(10, 25, 47, 0.4);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.time-slots h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.selected-date {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 6px;
    font-size: 0.95rem;
}

.selected-date span:first-child {
    color: var(--text-gray);
}

.selected-date span:last-child {
    color: var(--neon-green);
    font-weight: 500;
    margin-left: 5px;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-slot {
    padding: 12px 15px;
    border: 1px solid rgba(204, 214, 246, 0.3);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-gray);
    background: rgba(26, 26, 26, 0.3);
}

.time-slot:hover:not(.disabled) {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.time-slot.selected {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--primary-bg);
    font-weight: 600;
}

.time-slot.disabled {
    background: rgba(45, 45, 45, 0.5);
    color: var(--dark-gray);
    cursor: not-allowed;
    border-color: transparent;
    pointer-events: none;
}

.booking-form {
    background: rgba(10, 25, 47, 0.4);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.booking-form h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(204, 214, 246, 0.3);
    border-radius: 4px;
    background: rgba(10, 25, 47, 0.3);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.1);
}

.booking-form select {
    cursor: pointer;
}

.booking-summary {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
}

.booking-summary h5 {
    color: var(--neon-green);
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-details p {
    margin: 8px 0;
    font-size: 0.9rem;
}

.summary-details strong {
    color: var(--white);
}

.summary-details span {
    color: var(--text-gray);
}

#bookingSubmit {
    width: 100%;
    padding: 15px;
    background: var(--neon-green);
    color: var(--primary-bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

#bookingSubmit:hover:not(:disabled) {
    background: var(--electric-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

#bookingSubmit:disabled {
    background: var(--dark-gray);
    color: var(--text-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Calendar */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calendar-widget,
    .time-slots {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .calendar-grid {
        gap: 1px;
    }

    .calendar-day {
        font-size: 0.8rem;
    }

    .time-grid {
        grid-template-columns: 1fr;
    }

    .booking-container {
        gap: 20px;
    }

    .calendar-widget,
    .time-slots,
    .booking-form {
        padding: 20px;
    }
}

/****************************************************/
.guest-emails-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.guest-email-input {
    padding: 10px 12px;
    border: 1px solid #ccd6f6;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7fafd;
    transition: border 0.2s;
}

.guest-email-input:focus {
    border-color: #00FF88;
    outline: none;
}

.add-guest-email-btn {
    background: #00FF88;
    color: #0A192F;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}

.add-guest-email-btn:disabled {
    background: #b2f5d6;
    color: #888;
    cursor: not-allowed;
}