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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --dark-gray: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Variables para tema oscuro */
[data-theme="dark"] {
    --secondary-color: #ffffff;
    --accent-color: #1a1a1a;
    --text-color: #e0e0e0;
    --light-gray: #2d2d2d;
    --dark-gray: #a0a0a0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.3px;
}

p {
    font-weight: 300;
    line-height: 1.7;
}

.elegant-text {
    font-weight: 200;
    letter-spacing: 0.5px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    margin-top: 8px; /* Separación del tope */
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo a:hover {
    transform: translateY(-2px);
}

.nav-logo .logo-image {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    object-fit: contain !important;
    transition: var(--transition);
    display: block !important;
}

.nav-logo .logo-image:hover {
    transform: scale(1.1);
}

/* Footer logo styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin: 0;
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: var(--primary-color);
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 6rem;
    color: #ffffff;
}

/* SECCIÓN SERVICIOS - FONDOS LIMPIOS */
.services-preview {
    padding: 100px 0;
    background: #1a1a1a !important;
    position: relative;
}

[data-theme="dark"] .services-preview {
    background: #1a1a1a !important;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #ff6b35 !important;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-section .btn-primary {
    background: #ffffff !important;
    color: #ff6b35 !important;
    border-color: #ffffff !important;
}

.cta-section .btn-primary:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

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

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 4rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Logo responsive styles */
    .logo-image {
        width: 30px !important;
        height: 30px !important;
    }

    .nav-logo {
        margin-top: 6px; /* Menos separación en móvil */
    }

    .footer-logo-image {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    padding: 140px 0 80px; /* Aumentado de 120px a 140px para más separación */
    text-align: center;
    color: var(--accent-color);
    margin-top: 70px; /* Agregado margen superior para separar del navbar fijo */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Services Detail Styles */
.services-detail {
    padding: 100px 0;
}

.service-detail {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.service-content {
    display: flex;
    justify-content: center;
}

.service-info {
    max-width: 800px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--accent-color);
}

.service-detail h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-detail p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 300;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.technologies {
    margin-top: 2rem;
}

.technologies h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Plans Page Styles */
.plans-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch; /* Hace que todas las tarjetas tengan la misma altura */
}

.plan-card {
    background: var(--accent-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye el contenido uniformemente */
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contenido superior de la tarjeta */
.plan-header {
    flex-grow: 0;
    flex-shrink: 0;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 200;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.plan-period {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Características - ocupa el espacio disponible */
.plan-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 300;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.plan-features li.unavailable {
    color: var(--dark-gray);
    opacity: 0.6;
}

.plan-features li.unavailable i {
    color: var(--dark-gray);
}

/* Footer del plan - siempre al pie */
.plan-footer {
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: auto; /* Empuja el botón hacia abajo */
}

/* ===== PÁGINA DE CONTACTO - DISEÑO LIMPIO ===== */

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

[data-theme="dark"] .contact-section {
    background: #1a1a1a;
}

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

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--accent-color);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-form-wrapper {
    background: #2d2d2d;
    border-color: #404040;
}

.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

[data-theme="dark"] .contact-form h3 {
    color: var(--text-color);
}

.form-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

[data-theme="dark"] .form-subtitle {
    color: var(--dark-gray);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

[data-theme="dark"] .form-group label {
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background: var(--accent-color);
    color: var(--secondary-color);
    box-sizing: border-box;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: #1a1a1a;
    border-color: #404040;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    cursor: pointer;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}

[data-theme="dark"] .checkmark {
    border-color: #404040;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Button Styles */
.btn-full {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: var(--accent-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

[data-theme="dark"] .contact-info {
    background: #2d2d2d;
    border-color: #404040;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

[data-theme="dark"] .contact-info h3 {
    color: var(--text-color);
}

.contact-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

[data-theme="dark"] .contact-subtitle {
    color: var(--dark-gray);
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

[data-theme="dark"] .contact-item {
    background: #1a1a1a;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .contact-label {
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.contact-item span:not(.contact-label) {
    color: var(--dark-gray);
    font-weight: 400;
}

[data-theme="dark"] .contact-item span:not(.contact-label) {
    color: var(--dark-gray);
}

/* Social Links */
.social-links {
    text-align: center;
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

[data-theme="dark"] .social-links h4 {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

[data-theme="dark"] .social-icon {
    background: #1a1a1a;
    color: var(--text-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Contact Section */
.quick-contact {
    padding: 100px 0;
    background: var(--accent-color);
}

[data-theme="dark"] .quick-contact {
    background: #2d2d2d;
}

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

.quick-contact-item {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

[data-theme="dark"] .quick-contact-item {
    background: #1a1a1a;
    border-color: #404040;
}

.quick-contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.quick-contact-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.quick-contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

[data-theme="dark"] .quick-contact-item h3 {
    color: var(--text-color);
}

.quick-contact-item p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

[data-theme="dark"] .quick-contact-item p {
    color: var(--dark-gray);
}

.quick-contact-item .btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

[data-theme="dark"] .faq-section {
    background: #1a1a1a;
}

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

.faq-item {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .faq-item {
    background: #2d2d2d;
    border-color: #404040;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

[data-theme="dark"] .faq-item h3 {
    color: var(--text-color);
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

[data-theme="dark"] .faq-item p {
    color: var(--dark-gray);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .contact-info {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section,
    .quick-contact,
    .faq-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 2rem;
        order: -1;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form h3 {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .quick-contact-item {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--accent-color);
}

.about-content {
    padding: 100px 0;
}

/* ===== DISEÑO MODERNO PARA CONTACTO ===== */

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Elementos decorativos de fondo */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Tarjeta principal con glassmorphism */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .contact-card {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Contenido de la tarjeta con diseño moderno */
.contact-card-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    min-height: 650px;
    position: relative;
}

/* Columna del formulario modernizada */
.contact-form-column {
    padding: 3.5rem;
    position: relative;
}

.contact-form-column::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 107, 53, 0.2) 20%, 
        rgba(255, 107, 53, 0.4) 50%, 
        rgba(255, 107, 53, 0.2) 80%, 
        transparent 100%);
}

[data-theme="dark"] .contact-form-column::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 107, 53, 0.5) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%);
}

.contact-form-column h3 {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.025em;
}

[data-theme="dark"] .contact-form-column h3 {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
}

/* Columna de información modernizada con alineación al final */
.contact-info-column {
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(255, 140, 66, 0.08) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

[data-theme="dark"] .contact-info-column {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(255, 140, 66, 0.12) 100%);
}

.contact-info-column::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Contenedor superior para el contenido principal */
.contact-info-top {
    flex: 1;
}

.contact-info-column h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.025em;
}

[data-theme="dark"] .contact-info-column h3 {
    color: var(--text-color);
}

.info-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

.contact-details {
    margin-bottom: 2rem;
}

/* Social section alineada al final de la tarjeta */
.social-section {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    align-self: stretch;
}

.social-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

[data-theme="dark"] .social-section h4 {
    color: var(--text-color);
}

/* Items de contacto - DISEÑO COMPLETAMENTE LIMPIO */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 !important;
    background: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.2) 20%, 
        rgba(255, 107, 53, 0.4) 50%, 
        rgba(255, 107, 53, 0.2) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::after {
    opacity: 1;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary-color) !important;
    font-size: 1.6rem !important;
    width: 32px !important;
    height: 32px !important;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1) !important;
    padding: 0.5rem !important;
    border-radius: 50% !important;
    backdrop-filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

[data-theme="dark"] .contact-item i {
    background: rgba(255, 107, 53, 0.15) !important;
}

.contact-item:hover i {
    transform: scale(1.15);
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
}

[data-theme="dark"] .contact-item strong {
    color: var(--text-color);
}

.contact-item p {
    margin: 0 !important;
    color: var(--dark-gray) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

.contact-item a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

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

.contact-item a:hover {
    color: #e55a2b !important;
}

.contact-item a:hover::after {
    width: 100%;
}

/* Formulario modernizado */
.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
}

[data-theme="dark"] .form-group label {
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    box-sizing: border-box;
    position: relative;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(71, 85, 105, 0.8);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 53, 0.1),
        0 8px 25px -8px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
    background: rgba(15, 23, 42, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox modernizado - ARREGLADO PARA EVITAR DOBLE CHECK */
.checkbox-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    cursor: pointer;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    padding: 0.5rem 0;
}

.checkbox-container input[type="checkbox"] {
    display: none !important;
}

.checkbox-container .checkmark {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 6px !important;
    position: relative !important;
    flex-shrink: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: 2px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
}

[data-theme="dark"] .checkbox-container .checkmark {
    border-color: rgba(71, 85, 105, 0.8) !important;
    background: rgba(15, 23, 42, 0.8) !important;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.05) !important;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
}

/* Eliminar cualquier otro pseudo-elemento que pueda causar doble check */
.checkbox-container .checkmark::before {
    display: none !important;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::before {
    display: none !important;
}

/* Botón modernizado */
.btn-full {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 107, 53, 0.4);
}

.btn-full:hover::before {
    left: 100%;
}

.btn-full:active {
    transform: translateY(0);
}

/* Social section modernizada */
.social-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.social-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

[data-theme="dark"] .social-section h4 {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .social-icon {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 15px 30px -5px rgba(255, 107, 53, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: white;
    position: relative;
    z-index: 1;
}

/* Quick Contact Section modernizada */
.quick-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    position: relative;
}

[data-theme="dark"] .quick-contact-section {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(15, 23, 42, 0.9) 100%);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.quick-action {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .quick-action {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-action:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.2);
}

.quick-action:hover::before {
    transform: scaleX(1);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px -5px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.quick-action:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive Design Mejorado */
@media (max-width: 1024px) {
    .contact-card-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        padding: 3rem;
    }
    
    .contact-form-column::before {
        display: none;
    }
    
    .contact-info-column {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-column,
    .contact-info-column {
        padding: 2.5rem;
    }
    
    .contact-form-column h3 {
        font-size: 2rem;
    }
    
    .contact-info-column h3 {
        font-size: 1.75rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-action {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-column,
    .contact-info-column {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.about-graphic i {
    font-size: 5rem;
    color: var(--accent-color);
}

.values-section {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.value-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for internal pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-detail h2 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-graphic {
        width: 200px;
        height: 200px;
    }

    .about-graphic i {
        font-size: 3rem;
    }

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

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--accent-color);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: var(--dark-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.selected-plan-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.selected-plan-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.plan-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-price-large span {
    font-size: 1rem;
    color: var(--dark-gray);
}

.plan-features-modal {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.plan-features-modal li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.plan-features-modal li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Payment Form Styles */
.payment-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ambas columnas del mismo tamaño */
    gap: 1rem;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group label[for="terms"] {
    display: inline;
    font-weight: normal;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Comparison Table Styles */
.comparison-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid #eee;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--secondary-color);
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    text-align: center;
    color: var(--text-color);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background: var(--accent-color);
}

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

.faq-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Success Message Styles */
.success-content i {
    font-size: 3rem;
    color: #2ed573;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Plans */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .plan-price-large {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
    }

    .selected-plan-info {
        padding: 1rem;
    }

    .plan-price-large {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.3rem;
    }
}
/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.team-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.expertise-areas {
    margin-top: 4rem;
    text-align: center;
}

.expertise-areas h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 0.3px;
}

.expertise-item:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.expertise-item i {
    font-size: 1.5rem;
}

/* About Grid Reverse */
.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-grid.reverse {
        direction: ltr;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .expertise-areas h3 {
        font-size: 1.8rem;
    }
}

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

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

    .expertise-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .expertise-item i {
        font-size: 1.2rem;
    }
}
/* Contact Page Specific Styles */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-label {
    color: var(--secondary-color);
    font-weight: 500;
    min-width: 80px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item span:not(.contact-label) {
    color: var(--text-color);
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-contact-item {
    background: var(--accent-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-contact-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.quick-contact-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.quick-contact-item p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Success Modal Styles */
.success-modal-content {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    animation: modalSlideIn 0.3s ease-out;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: #2ed573;
}

.success-modal-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Field Error Styles */
.field-error {
    color: #ff4757 !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
}

/* Form Enhancements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff4757 !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        order: -1;
    }

    .social-icons {
        justify-content: center;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .success-modal-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .success-modal-content h3 {
        font-size: 1.6rem;
    }

    .success-icon i {
        font-size: 3rem;
    }

    .quick-contact-item {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-wrap: wrap;
        margin-bottom: 1.2rem;
    }

    .contact-label {
        min-width: 70px;
        font-size: 0.9rem;
    }
}
/* Calendar Modal Styles */
.calendar-modal-content {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close-calendar {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-calendar:hover {
    color: var(--primary-color);
}

.calendar-modal-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.calendar-modal-content > p {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.calendar-container {
    margin-bottom: 2rem;
}

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

.calendar-header button {
    background: var(--primary-color);
    color: var(--accent-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.calendar-header button:hover {
    background: #ff8c42;
    transform: scale(1.1);
}

.calendar-header h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
}

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

.day-header {
    text-align: center;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.5rem;
    font-size: 0.9rem;
}

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

.calendar-day.available {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #059669;
}

.calendar-day.available:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #059669;
    transform: scale(1.05);
}

.calendar-day.busy {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    cursor: not-allowed;
}

.calendar-day.weekend {
    background: rgba(156, 163, 175, 0.1);
    border: 2px solid rgba(156, 163, 175, 0.3);
    color: #6b7280;
    cursor: not-allowed;
}

.calendar-day.past {
    background: rgba(156, 163, 175, 0.05);
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.selected {
    background: var(--primary-color) !important;
    color: var(--accent-color) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.1);
}

.calendar-day.disabled {
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 300;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid;
}

.legend-color.available {
    background: rgba(34, 197, 94, 0.2);
    border-color: #059669;
}

.legend-color.busy {
    background: rgba(239, 68, 68, 0.2);
    border-color: #dc2626;
}

.legend-color.weekend {
    background: rgba(156, 163, 175, 0.2);
    border-color: #6b7280;
}

/* Time Slot Enhancements */
.time-slot.busy {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.busy:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
    transform: none;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slots h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

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

.time-slot {
    padding: 0.8rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    color: var(--secondary-color);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

.meeting-form h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.selected-datetime {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
    color: var(--text-color);
}

.selected-datetime strong {
    font-weight: 500;
    color: var(--secondary-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.meeting-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: left;
}

.meeting-details p {
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: var(--text-color);
}

.meeting-details strong {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .legend-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calendar-modal-content {
        padding: 1rem;
    }

    .calendar-header h4 {
        font-size: 1.1rem;
    }

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

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

    .calendar-legend {
        gap: 0.5rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .legend-color {
        width: 12px;
        height: 12px;
    }
}
/* Download Notification Styles */
.download-notification {
    font-weight: 400;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notification-content i {
    font-size: 1.2rem;
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}
/* Auto Notifications Styles */
.auto-notifications {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: center;
}

.notification-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.notification-status i {
    font-size: 1.5rem;
    color: #d1fae5;
}

.notification-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.notification-details p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Meeting Confirmation Enhanced Styles */
.meeting-confirmation {
    max-width: 650px !important;
}

.meeting-confirmation .meeting-info {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.meeting-confirmation .meeting-info p {
    margin: 0.5rem 0;
    color: #0c4a6e;
    font-weight: 400;
}

.meeting-confirmation .meeting-info p:first-child {
    font-weight: 500;
    color: #0369a1;
    margin-bottom: 1rem;
}

/* Form enhancements */
.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Notification types */
.notification.warning {
    background: #f59e0b !important;
}

.notification.error {
    background: #ef4444 !important;
}

/* Phone input styling */
#meetingPhone {
    font-family: monospace;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auto-notifications {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .notification-status {
        font-size: 1rem;
    }
    
    .notification-details {
        font-size: 0.8rem;
    }
    
    .notification-details p {
        flex-direction: column;
        gap: 0.2rem;
    }
}

@media (max-width: 480px) {
    .auto-notifications {
        padding: 0.8rem;
    }
    
    .notification-status {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meeting-confirmation .meeting-info {
        padding: 1rem;
    }
}

.confirmation-actions {
    margin-top: 2rem;
}

.confirmation-actions h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    text-align: center;
}

.calendar-buttons,
.whatsapp-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-calendar {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-calendar.google {
    background: #4285f4;
    color: white;
}

.btn-calendar.google:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.btn-calendar.outlook {
    background: #0078d4;
    color: white;
}

.btn-calendar.outlook:hover {
    background: #106ebe;
    transform: translateY(-2px);
}

.btn-calendar.ics {
    background: var(--dark-gray);
    color: white;
}

.btn-calendar.ics:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-whatsapp.admin {
    background: #ff6b35;
}

.btn-whatsapp.admin:hover {
    background: #ff8c42;
}

.final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.meeting-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
}

.meeting-info p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Notification Styles */
.notification {
    font-weight: 400;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.success {
    background: #10b981 !important;
}

.notification.info {
    background: #3b82f6 !important;
}

.notification .notification-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notification .notification-content i {
    font-size: 1.2rem;
}

/* Quick Contact Item Hover Effect */
.quick-contact-item[onclick] {
    transition: var(--transition);
}

.quick-contact-item[onclick]:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quick-contact-item[onclick]:hover .btn {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* Responsive Design for Meeting Confirmation */
@media (max-width: 768px) {
    .meeting-confirmation {
        width: 95% !important;
        margin: 10px;
        max-height: 95vh;
    }

    .calendar-buttons,
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-calendar,
    .btn-whatsapp {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .final-actions {
        flex-direction: column;
    }

    .final-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .meeting-confirmation {
        padding: 1.5rem !important;
    }

    .confirmation-actions h4 {
        font-size: 1rem;
    }

    .btn-calendar,
    .btn-whatsapp {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .meeting-details {
        padding: 1rem;
    }
}

/* ===== TEMA OSCURO - TODO EL SITIO ===== */
[data-theme="dark"] body {
    background-color: #1a1a1a;
    color: var(--text-color);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-link {
    color: #ffffff;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--primary-color);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #0d1117 0%, #1a1a1a 100%);
}

[data-theme="dark"] .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-description {
    color: #e0e0e0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-graphic i {
    color: #ffffff;
}

[data-theme="dark"] .services-preview {
    background: #f8f9fa !important;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .plan-card,
[data-theme="dark"] .feature-card {
    background: #2d2d2d;
    border: 1px solid #404040;
    color: var(--text-color);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .plan-card:hover {
    background: #353535;
    border-color: #555;
}

[data-theme="dark"] .footer {
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

[data-theme="dark"] .footer-section a {
    color: var(--text-color);
}

[data-theme="dark"] .footer-section a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-gray);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff;
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span {
    color: var(--text-color);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: #2d2d2d;
    border: 1px solid #404040;
    color: var(--text-color);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-color);
    background: #353535;
}

[data-theme="dark"] .btn-secondary {
    background: #2d2d2d;
    color: var(--text-color);
    border: 1px solid #404040;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #404040;
}

[data-theme="dark"] .stats {
    background: #1a1a1a;
}

[data-theme="dark"] .stat-item {
    background: #2d2d2d;
    border: 1px solid #404040;
}

/* Botón de tema - Solo icono */
.theme-toggle-container {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

.theme-icon {
    font-size: 1.2rem;
    color: #ffffff;
    transition: var(--transition);
}

[data-theme="dark"] .theme-icon {
    color: #ffd700;
}

[data-theme="light"] .theme-icon {
    color: #87ceeb;
}

/* Mobile responsive para el botón de tema */
@media (max-width: 768px) {
    .theme-toggle-container {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

    .nav-menu.active .theme-toggle-container {
        display: flex;
    }
}
/* ===== SLIDER MODERNO ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Controles del slider */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 107, 53, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

[data-theme="dark"] .slider-btn {
    background: rgba(255, 107, 53, 0.9);
}

/* Indicadores del slider */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.8);
}

[data-theme="dark"] .indicator {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .indicator.active {
    background: var(--primary-color);
}

/* Responsive para slider */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}
/* ===== MEJORAS DE VISIBILIDAD SLIDER ===== */
.hero-content {
    z-index: 5;
    position: relative;
}

.hero-image {
    z-index: 3;
    position: relative;
}

/* Asegurar que los botones sean visibles */
.hero-buttons .btn {
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.hero-buttons .btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .hero-buttons .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

[data-theme="dark"] .hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Mejorar contraste de los iconos */
.hero-graphic {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .hero-graphic {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* ===== DEBUG Y FORZAR VISIBILIDAD SLIDER ===== */
.hero-slider {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.slide {
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.slide.active {
    display: block !important;
    animation: fadeIn 0.8s ease-in-out !important;
}

.hero-title {
    color: #1a1a1a !important;
    font-size: 3.5rem !important;
    font-weight: 300 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero-description {
    color: #333333 !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero-graphic i {
    color: #ffffff !important;
    font-size: 6rem !important;
}

[data-theme="dark"] .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .hero-description {
    color: #e0e0e0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Forzar visibilidad de botones */
.hero-buttons .btn {
    display: inline-block !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero-buttons .btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
}

[data-theme="dark"] .hero-buttons .btn-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
}
/* ===== LOGO CON TEXTO ===== */

/* Header Logo */
.logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.logo-text .proyecto {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

.logo-text .colmena {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ff6b35 !important;
    margin: 0 !important;
}

[data-theme="dark"] .logo-text .proyecto {
    color: #ffffff !important;
}

/* Footer Logo */
.footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 1rem !important;
}

.footer-logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.footer-logo-text .proyecto {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: var(--text-color) !important;
    margin: 0 !important;
}

.footer-logo-text .colmena {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ff6b35 !important;
    margin: 0 !important;
}

/* Responsive para logo con texto */
@media (max-width: 768px) {
    .logo-text .proyecto,
    .logo-text .colmena {
        font-size: 1rem !important;
    }
    
    .footer-logo-text .proyecto,
    .footer-logo-text .colmena {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none !important;
    }
    
    .footer-logo-text .proyecto,
    .footer-logo-text .colmena {
        font-size: 1rem !important;
    }
}
/* ===== BOTONES SECUNDARIOS GENERALES ===== */

/* Botón secundario en tema claro */
.btn-secondary {
    background: transparent !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

/* Botón secundario en tema oscuro */
[data-theme="dark"] .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #ffffff !important;
    color: #1a1a1a !important;
}

/* Grid de servicios responsive mejorado */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* ===== SECCIÓN PARTYGO SHOWCASE ===== */
.partygo-showcase {
    padding: 100px 0;
    background: #1a1a1a !important;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .partygo-showcase {
    background: #f8f9fa !important;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-text {
    animation: slideInLeft 1s ease-out;
}

/* Título centrado como las demás secciones */
.partygo-showcase .section-title {
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 3rem;
    position: relative;
}

[data-theme="dark"] .partygo-showcase .section-title {
    color: #1a1a1a !important;
}

.partygo-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.showcase-text h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

[data-theme="dark"] .showcase-text h3 {
    color: #1a1a1a !important;
}

.showcase-text p {
    font-size: 1.1rem;
    color: #e0e0e0 !important;
    line-height: 1.7;
    margin-bottom: 2rem;
}

[data-theme="dark"] .showcase-text p {
    color: #333333 !important;
}

.partygo-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

[data-theme="dark"] .feature-item {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .feature-item:hover {
    background: rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.4;
}

[data-theme="dark"] .feature-item span {
    color: #1a1a1a !important;
}

.showcase-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.partygo-preview {
    background: var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transition: var(--transition);
}

[data-theme="dark"] .partygo-preview {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.partygo-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .partygo-preview:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.preview-header {
    background: #f1f3f4;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28ca42; }

.preview-url {
    font-size: 0.9rem;
    color: #666;
    font-family: monospace;
}

.preview-content {
    padding: 2rem;
    text-align: center;
}

.preview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.preview-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.preview-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.preview-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tema oscuro para PartyGo preview */
[data-theme="dark"] .partygo-preview {
    background: #2d2d2d;
    border: 1px solid #404040;
}

[data-theme="dark"] .preview-header {
    background: #1a1a1a;
    border-bottom-color: #404040;
}

[data-theme="dark"] .preview-url {
    color: #a0a0a0;
}

/* Responsive para PartyGo */
@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .showcase-actions {
        justify-content: center;
    }
    
    .partygo-preview {
        max-width: 350px;
    }
    
    .showcase-text h3 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .partygo-showcase {
        padding: 60px 0;
    }
    
    .showcase-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .partygo-preview {
        max-width: 300px;
    }
    
    .preview-content {
        padding: 1.5rem;
    }
}

/* ===== FIN SECCIÓN PARTYGO ===== */

/* SECCIÓN SERVICIOS */
.services-preview {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .services-preview {
    background: #f8f9fa;
}



/* Título de servicios */
.services-preview .section-title {
    color: #ffffff !important;
    margin-bottom: 3rem;
    position: relative;
}

[data-theme="dark"] .services-preview .section-title {
    color: #1a1a1a !important;
}

.services-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

/* Tarjetas de servicio - TEMA CLARO */
.service-card {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
    color: #1a1a1a !important;
    padding: 2rem;
    border-radius: 15px;
}

.service-card h3 {
    color: #1a1a1a !important;
}

.service-card p {
    color: #333333 !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Tarjetas de servicio - TEMA OSCURO */
[data-theme="dark"] .service-card {
    background: #2d2d2d !important;
    border: 1px solid #404040 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .service-card p {
    color: var(--dark-gray) !important;
}

[data-theme="dark"] .service-card:hover {
    background: #353535 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}
/* ===== SECCIÓN TESTIMONIOS ===== */
.testimonials {
    background: #f8f9fa !important;
    padding: 100px 0;
}

[data-theme="dark"] .testimonials {
    background: #1a1a1a !important;
}

.testimonials .section-title {
    color: #1a1a1a !important;
}

[data-theme="dark"] .testimonials .section-title {
    color: #ffffff !important;
}

.testimonial-card {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    color: #1a1a1a;
}

[data-theme="dark"] .testimonial-card {
    background: #2d2d2d !important;
    border: 1px solid #404040 !important;
    color: #ffffff;
}

/* ===== SECCIÓN CTA (LLAMADA A LA ACCIÓN) ===== */
.cta-section {
    background: #ff6b35;
}

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

.cta-section h2,
.cta-section p {
    color: #ffffff;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #ff6b35;
    border: 2px solid #ffffff;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* ===== FOOTER - FONDOS CORRECTOS ===== */
.footer {
    background: #f8f9fa !important;
    color: #1a1a1a !important;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .footer {
    background: #1a1a1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section a {
    color: #1a1a1a;
}

[data-theme="dark"] .footer-section a:hover {
    color: #ff6b35;
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    color: #666666;
}

/* ===== ICONOS DE SERVICIOS MEJORADOS ===== */
.service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

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

/* ===== BOTONES EN SECCIÓN SERVICIOS ===== */

/* Tema claro - fondo gris de sección */
.services-preview .btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: 2px solid #ff6b35 !important;
}

.services-preview .btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
}

.services-preview .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.services-preview .btn-secondary:hover {
    background: #ffffff !important;
    color: #1a1a1a !important;
}

/* Tema oscuro - fondo blanco de sección */
[data-theme="dark"] .services-preview .btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: 2px solid #ff6b35 !important;
}

[data-theme="dark"] .services-preview .btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
}

[data-theme="dark"] .services-preview .btn-secondary {
    background: transparent !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
}

[data-theme="dark"] .services-preview .btn-secondary:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
}
/* ===== FORZAR FONDO TESTIMONIOS - TEMA OSCURO ===== */
[data-theme="dark"] section.testimonials {
    background: #1a1a1a !important;
}

[data-theme="dark"] .testimonials-section {
    background: #1a1a1a !important;
}

/* Selector más específico para forzar el cambio */
html[data-theme="dark"] .testimonials {
    background-color: #1a1a1a !important;
}
/* ===== ENLACES DEL FOOTER - CORREGIDO ===== */

/* Footer en tema claro tiene fondo blanco, entonces enlaces oscuros */
.footer-section a {
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-section a:hover {
    color: #ff6b35 !important;
}

/* Footer en tema oscuro tiene fondo gris, entonces enlaces blancos */
[data-theme="dark"] .footer-section a {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section a:hover {
    color: #ff6b35 !important;
}
/* ===== TEXTO GENERAL DEL FOOTER - CORREGIDO ===== */

/* Footer en tema claro - fondo blanco, texto oscuro */
.footer {
    color: #1a1a1a !important;
}

.footer-section h4 {
    color: #1a1a1a !important;
}

.footer-section p {
    color: #333333 !important;
}

.footer-bottom {
    color: #666666 !important;
}

/* Footer en tema oscuro - fondo gris, texto claro */
[data-theme="dark"] .footer {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-section p {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .footer-bottom {
    color: #cccccc !important;
}
/* ===== SECCIÓN CTA - CONTENIDO VISIBLE ===== */

.cta-section {
    background: #ff6b35 !important;
    padding: 100px 0 !important;
    text-align: center !important;
}

.cta-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.cta-content h2 {
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.cta-content p {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
    opacity: 0.95 !important;
}

.cta-section .btn-primary {
    background: #ffffff !important;
    color: #ff6b35 !important;
    border: 2px solid #ffffff !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.cta-section .btn-primary:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Responsive para CTA */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem !important;
    }
    
    .cta-content p {
        font-size: 1.1rem !important;
    }
    
    .cta-section .btn-primary {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
}
/* Login System Styles */
.login-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    margin-top: 120px; /* Increased spacing from header */
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

[data-theme="dark"] .login-card {
    background: #2d2d2d;
    border: 1px solid #404040;
}

.login-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.login-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .login-title {
    color: var(--text-color);
}

.login-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

[data-theme="dark"] .login-subtitle {
    color: var(--dark-gray);
}

.login-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

[data-theme="dark"] .form-group label {
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    box-sizing: border-box;
}

[data-theme="dark"] .form-group input {
    background: #1a1a1a;
    border-color: #404040;
    color: var(--text-color);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.login-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.error-message {
    background: #fee;
    color: #c53030;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #c53030;
}

.success-message {
    background: #f0fff4;
    color: #22543d;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #22543d;
}

.auth-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

[data-theme="dark"] .auth-links {
    border-top-color: #404040;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin: 0.5rem 0;
}

.auth-links a:hover {
    color: #e55a2b;
}

.back-to-site {
    margin-top: 1rem;
    text-align: center;
}

.back-to-site a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.back-to-site a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
        min-height: 70vh;
        margin-top: 100px;
    }
    
    .login-card {
        padding: 1.5rem;
    }
}
/* Register System Styles */
.register-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    margin-top: 120px; /* Increased spacing from header */
}

.register-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

[data-theme="dark"] .register-card {
    background: #2d2d2d;
    border: 1px solid #404040;
}

.register-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.register-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .register-title {
    color: var(--text-color);
}

.register-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

[data-theme="dark"] .register-subtitle {
    color: var(--dark-gray);
}

.register-form {
    text-align: left;
}

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

.required {
    color: #ef4444;
}

.register-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.register-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Forgot Password System Styles */
.forgot-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    margin-top: 120px; /* Increased spacing from header */
}

.forgot-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

[data-theme="dark"] .forgot-card {
    background: #2d2d2d;
    border: 1px solid #404040;
}

.forgot-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.forgot-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .forgot-title {
    color: var(--text-color);
}

.forgot-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .forgot-subtitle {
    color: var(--dark-gray);
}

.forgot-form {
    text-align: left;
}

.forgot-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.forgot-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.demo-info {
    background: #e0f2fe;
    color: #0369a1;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.85rem;
    border-left: 4px solid #0369a1;
}

@media (max-width: 768px) {
    .register-container, .forgot-container {
        padding: 1rem;
        min-height: 70vh;
        margin-top: 100px;
    }
    
    .register-card, .forgot-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Admin Dashboard Styles */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 80px);
    background: var(--bg-color);
    margin-top: 80px;
}

.admin-sidebar {
    width: 280px;
    background: var(--card-bg);
    box-shadow: var(--shadow-light);
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
    border-radius: 0 15px 15px 0;
    z-index: 100;
}

[data-theme="dark"] .admin-sidebar {
    background: #2d2d2d;
    border-right: 1px solid #404040;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: var(--bg-color);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

[data-theme="dark"] .sidebar-header {
    border-bottom-color: #404040;
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-light);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .sidebar-title {
    color: var(--text-color);
}

.sidebar-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

[data-theme="dark"] .sidebar-subtitle {
    color: var(--dark-gray);
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    margin: 0.25rem 0;
}

[data-theme="dark"] .nav-item {
    color: var(--text-color);
}

.nav-item:hover, .nav-item.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.user-info {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

[data-theme="dark"] .user-info {
    border-top-color: #404040;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .user-name {
    color: var(--text-color);
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.logout-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.dashboard-header {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .dashboard-header {
    background: #2d2d2d;
    border-color: #404040;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .dashboard-title {
    color: var(--text-color);
}

.dashboard-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

[data-theme="dark"] .dashboard-subtitle {
    color: var(--dark-gray);
}

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

.stat-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .stat-card {
    background: #2d2d2d;
    border-color: #404040;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e55a2b);
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
}

.stat-icon.contacts { 
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.stat-icon.meetings { 
    background: linear-gradient(135deg, #10b981, #059669);
}
.stat-icon.projects { 
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.stat-icon.notifications { 
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

[data-theme="dark"] .stat-number {
    color: var(--text-color);
}

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

[data-theme="dark"] .stat-label {
    color: var(--dark-gray);
}

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

.content-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .content-card {
    background: #2d2d2d;
    border-color: #404040;
}

.card-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
}

[data-theme="dark"] .card-header {
    border-bottom-color: #404040;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .card-title {
    color: var(--text-color);
}

.card-body {
    padding: 2rem;
}

.contact-item, .meeting-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-item,
[data-theme="dark"] .meeting-item {
    border-bottom-color: #404040;
}

.contact-item:last-child, .meeting-item:last-child {
    border-bottom: none;
}

.contact-item:hover, .meeting-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-avatar, .meeting-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info, .meeting-info {
    flex: 1;
}

.contact-name, .meeting-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

[data-theme="dark"] .contact-name,
[data-theme="dark"] .meeting-title {
    color: var(--text-color);
}

.contact-email, .meeting-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

[data-theme="dark"] .contact-email,
[data-theme="dark"] .meeting-date {
    color: var(--dark-gray);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-nuevo { background: #dbeafe; color: #1e40af; }
.status-contactado { background: #d1fae5; color: #065f46; }
.status-en_proceso { background: #fef3c7; color: #92400e; }
.status-convertido { background: #dcfce7; color: #166534; }
.status-agendada { background: #e0e7ff; color: #3730a3; }

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    color: white;
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 1.5rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
/* Admin Contacts Page Styles */
.page-header {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .page-header {
    background: #2d2d2d;
    border-color: #404040;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .page-title {
    color: var(--text-color);
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

[data-theme="dark"] .page-subtitle {
    color: var(--dark-gray);
}

.filters-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .filters-section {
    background: #2d2d2d;
    border-color: #404040;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

[data-theme="dark"] .filter-group label {
    color: var(--text-color);
}

.filter-group select, .filter-group input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    background: var(--card-bg);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

[data-theme="dark"] .filter-group select,
[data-theme="dark"] .filter-group input {
    background: #1a1a1a;
    border-color: #404040;
    color: var(--text-color);
}

.filter-group select:focus, .filter-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-badge {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    min-width: 140px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="dark"] .stat-badge {
    background: #2d2d2d;
    border-color: #404040;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .stat-label {
    color: var(--dark-gray);
}

.contacts-table {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contacts-table {
    background: #2d2d2d;
    border-color: #404040;
}

.table-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
}

[data-theme="dark"] .table-header {
    border-bottom-color: #404040;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
}

.table-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .table-title {
    color: var(--text-color);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] th,
[data-theme="dark"] td {
    border-bottom-color: #404040;
}

th {
    background: rgba(255, 107, 53, 0.05);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] th {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-color);
}

td {
    font-size: 0.9rem;
    color: var(--text-dark);
}

[data-theme="dark"] td {
    color: var(--text-color);
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

[data-theme="dark"] .contact-details h4 {
    color: var(--text-color);
}

.contact-details p {
    margin: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

[data-theme="dark"] .contact-details p {
    color: var(--dark-gray);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge:hover {
    transform: scale(1.05);
}

.status-nuevo { background: #dbeafe; color: #1e40af; }
.status-contactado { background: #d1fae5; color: #065f46; }
.status-en_proceso { background: #fef3c7; color: #92400e; }
.status-convertido { background: #dcfce7; color: #166534; }
.status-descartado { background: #fee2e2; color: #991b1b; }

.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary { background: linear-gradient(135deg, var(--primary-color), #e55a2b); color: white; }
.btn-secondary { background: linear-gradient(135deg, #6b7280, #4b5563); color: white; }
.btn-success { background: linear-gradient(135deg, #10b981, #059669); color: white; }

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}

[data-theme="dark"] .modal-content {
    background: #2d2d2d;
    border-color: #404040;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .modal-title {
    color: var(--text-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .form-group label {
    color: var(--text-color);
}

.form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    background: var(--card-bg);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #1a1a1a;
    border-color: #404040;
    color: var(--text-color);
}

.form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a, .pagination span {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

[data-theme="dark"] .pagination a,
[data-theme="dark"] .pagination span {
    border-color: #404040;
    color: var(--text-color);
}

.pagination .current {
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    color: white;
    border-color: var(--primary-color);
}

.pagination a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .table-container {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}
/* Advanced Dashboard Analytics Styles */
.stat-trend {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-trend i {
    font-size: 0.7rem;
}

.stat-trend .fa-arrow-up {
    color: #10b981;
}

.stat-trend .fa-arrow-down {
    color: #ef4444;
}

.analytics-section {
    margin: 3rem 0;
}

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

.chart-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .chart-card {
    background: #2d2d2d;
    border-color: #404040;
}

.chart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
}

[data-theme="dark"] .chart-header {
    border-bottom-color: #404040;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
}

.chart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .chart-header h3 {
    color: var(--text-color);
}

.chart-controls select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-dark);
    font-size: 0.9rem;
}

[data-theme="dark"] .chart-controls select {
    background: #1a1a1a;
    border-color: #404040;
    color: var(--text-color);
}

.chart-container {
    padding: 2rem;
    height: 300px;
    position: relative;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

[data-theme="dark"] .live-indicator {
    color: var(--dark-gray);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.metrics-container {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .metric-label {
    color: var(--dark-gray);
}

/* Widgets Personalizables */
.widget-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.widget {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .widget {
    background: #2d2d2d;
    border-color: #404040;
}

.widget-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .widget-header {
    border-bottom-color: #404040;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

[data-theme="dark"] .widget-title {
    color: var(--text-color);
}

.widget-controls {
    display: flex;
    gap: 0.5rem;
}

.widget-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.widget-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.widget-body {
    padding: 1.5rem;
}

/* Accessibility Improvements */
.high-contrast {
    --primary-color: #0066cc;
    --shadow-light: 0 0 0 2px currentColor;
    --shadow-hover: 0 0 0 3px currentColor;
}

.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Keyboard Navigation */
.keyboard-nav:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Responsive Charts */
@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 250px;
        padding: 1rem;
    }
    
    .metrics-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .admin-sidebar,
    .chart-controls,
    .widget-controls {
        display: none !important;
    }
    
    .admin-content {
        margin-left: 0 !important;
    }
    
    .chart-card {
        break-inside: avoid;
        margin-bottom: 2rem;
    }
}

/* Dark Theme Chart Adjustments */
[data-theme="dark"] canvas {
    filter: brightness(0.9);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

[data-theme="dark"] .loading-skeleton {
    background: linear-gradient(90deg, #2d2d2d 25%, #404040 50%, #2d2d2d 75%);
    background-size: 200% 100%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Notification Badges */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

[data-theme="dark"] .tooltip::before {
    background: #555;
}

/* Advanced Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}
/* Advanced Meeting Management Styles */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.calendar-section {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

[data-theme="dark"] .calendar-section {
    background: #2d2d2d;
    border-color: #404040;
}

.calendar-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .calendar-header {
    border-bottom-color: #404040;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-nav h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 200px;
    text-align: center;
}

[data-theme="dark"] .calendar-nav h3 {
    color: var(--text-color);
}

.btn-icon {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .btn-icon {
    border-color: #404040;
    color: var(--text-color);
}

.btn-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.view-toggle {
    display: flex;
    background: var(--border-color);
    border-radius: 10px;
    padding: 4px;
}

[data-theme="dark"] .view-toggle {
    background: #404040;
}

.view-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

[data-theme="dark"] .view-btn {
    color: var(--text-color);
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
}

.calendar-container {
    padding: 2rem;
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

[data-theme="dark"] .calendar-grid {
    background: #404040;
}

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

.calendar-day-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.calendar-day {
    background: var(--card-bg);
    min-height: 100px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

[data-theme="dark"] .calendar-day {
    background: #2d2d2d;
}

.calendar-day:hover {
    background: rgba(255, 107, 53, 0.1);
}

.calendar-day.today {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--primary-color);
}

.calendar-day.other-month {
    opacity: 0.3;
}

.day-number {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .day-number {
    color: var(--text-color);
}

.day-meetings {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.meeting-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

/* Meeting Modal Styles */
.large-modal {
    max-width: 700px;
    width: 95%;
}

.meeting-form {
    max-height: 70vh;
    overflow-y: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.required {
    color: #ef4444;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input {
    flex: 1;
}

.btn-addon {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-addon:hover {
    background: #e55a2b;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .radio-label {
    border-color: #404040;
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

[data-theme="dark"] .radio-custom {
    border-color: #404040;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

[data-theme="dark"] .checkbox-custom {
    border-color: #404040;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-hover);
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
}

[data-theme="dark"] .notification {
    background: #2d2d2d;
    border-color: #404040;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #10b981;
}

.notification.error {
    border-left: 4px solid #ef4444;
}

.notification.info {
    border-left: 4px solid #3b82f6;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #10b981;
}

.notification.error i {
    color: #ef4444;
}

.notification.info i {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .calendar-nav {
        justify-content: center;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Print Styles for Calendar */
@media print {
    .calendar-header,
    .header-actions {
        display: none !important;
    }
    
    .calendar-day {
        min-height: 80px;
        break-inside: avoid;
    }
    
    .meeting-dot {
        width: 12px;
        height: 12px;
    }
}


/* ===== CORRECCIÓN HAMBURGUESA Y MENÚ - CONTRASTE INVERTIDO ===== */

/* TEMA CLARO: Hamburguesa OSCURA */
[data-theme="light"] .bar {
    background: #1a1a1a !important;
}

/* TEMA OSCURO: Hamburguesa CLARA */
[data-theme="dark"] .bar {
    background: #ffffff !important;
}

/* Hover del hamburguesa */
[data-theme="light"] .nav-toggle:hover .bar {
    background: var(--primary-color) !important;
}

[data-theme="dark"] .nav-toggle:hover .bar {
    background: var(--primary-color) !important;
}

/* MENÚ DESPLEGABLE MOBILE */
@media (max-width: 768px) {
    /* TEMA CLARO: Fondo claro, texto oscuro */
    [data-theme="light"] .nav-menu {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    [data-theme="light"] .nav-link {
        color: #1a1a1a !important;
    }
    
    [data-theme="light"] .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(255, 107, 53, 0.1) !important;
    }
    
    /* TEMA OSCURO: Fondo oscuro, texto claro */
    [data-theme="dark"] .nav-menu {
        background-color: rgba(26, 26, 26, 0.98) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    [data-theme="dark"] .nav-link {
        color: #ffffff !important;
    }
    
    [data-theme="dark"] .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(255, 107, 53, 0.1) !important;
    }
    
    /* Mejoras del menú */
    .nav-link {
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        margin: 0.5rem 1rem !important;
        transition: all 0.3s ease !important;
    }
}
