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

:root {
    --primary: #2563eb;        /* Azul corporativo vibrante */
    --primary-dark: #1e3a8a;    /* Azul oscuro */
    --secondary: #64748b;       /* Gris azulado */
    --dark-bg: #0a0a0f;         /* Fondo oscuro principal */
    --dark-card: #14141f;       /* Fondo para tarjetas */
    --dark-surface: #1e1e2a;    /* Superficie oscura */
    --gray-light: #2d2d3a;      /* Gris para bordes */
    --text-primary: #ffffff;     /* Texto blanco */
    --text-secondary: #a0a0b0;   /* Texto gris claro */
    --success: #10b981;          /* Verde para WhatsApp */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header corporativo oscuro */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    transition: var(--transition);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-header.scrolled {
    padding: 10px 5%;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
}

/* Navegación */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: var(--transition);
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

/* Header actions */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Botones */
.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

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

/* Menú móvil */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

/* Hero Section - Oscuro con fondo */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/slide.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    opacity: 0.0;
    z-index: 1;
}

/* Eliminamos efectos de grid y scanline pero mantenemos los divs vacíos */
.grid-lines {
    display: none;
}

.scanline {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
}

.hero-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 0 auto 40px;
    line-height: 1.8;
    max-width: 800px;
    text-shadow: none;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Sección Eventos - Oscura */
.events-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    text-align: center;
}

.events-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Exo 2', sans-serif;
    text-shadow: none;
    border: none;
    background: none;
    backdrop-filter: none;
    padding: 0;
}

.events-text span {
    color: var(--primary);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: none;
}

.events-about {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 2px solid var(--gray-light);
    border-bottom: 2px solid var(--gray-light);
}

.events-about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.events-about p::before,
.events-about p::after {
    display: none;
}

/* Sección Servicios - Oscura */
.features-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    box-shadow: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-light);
    opacity: 1;
    transform: none;
    backdrop-filter: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.feature-card.visible {
    opacity: 1;
    transform: none;
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 25px;
    animation: none;
    filter: none;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.feature-description {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Sección Video - Oscura */
.video-simple-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.video-simple-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-neon-frame {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: none;
    padding: 0;
}

.frame-glow {
    display: none;
}

.frame-corner {
    display: none;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-simple {
    text-align: center;
    margin: 30px 0;
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: none;
}

.video-description {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.tag {
    padding: 6px 20px;
    background: var(--dark-card);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: none;
}

.video-actions-simple {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Galería Masonry - Oscura */
.gallery-masonry-section {
    padding: 100px 0;
    background: var(--dark-surface);
}

.gallery-masonry-section::before {
    display: none;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-light);
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: none;
}

.filter-btn::before {
    display: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: none;
}

.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    break-inside: avoid;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    opacity: 1;
    transform: none;
    animation: none;
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.masonry-img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
}

.masonry-item:hover .masonry-img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: white;
    transition: bottom 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    bottom: 0;
}

.masonry-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    text-shadow: none;
}

.masonry-category {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Lightbox - Oscuro */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    margin: auto;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    border: none;
    box-shadow: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    text-shadow: none;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: none;
    text-shadow: none;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: none;
    text-shadow: none;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: none;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Sección Contacto - Oscura con fondo */
.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('images/slide.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mantenemos las líneas de grid pero sin animación neón */
.contact-section > div:first-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    animation: none;
}

/* Eliminamos scanline pero mantenemos el div */
.contact-section > div:nth-of-type(2) {
    display: none;
}

/* Partículas flotantes - las mantenemos pero con colores más sutiles */
.contact-section > div:nth-of-type(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-section > div:nth-of-type(3) div {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: none;
    animation: float 8s ease-in-out infinite;
}

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

.contact-section .section-title span {
    color: white;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-light);
    backdrop-filter: none;
    opacity: 1;
    transform: none;
}

.contact-container.visible {
    opacity: 1;
    transform: none;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    background: rgba(37, 99, 235, 0.05) !important;
}

.contact-icon {
    font-size: 28px;
    color: var(--primary);
    min-width: 40px;
    text-align: center;
}

.contact-item:hover .contact-icon {
    transform: none;
    filter: none;
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-detail a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--primary) !important;
    text-shadow: none !important;
}

/* Botón WhatsApp flotante - Corporativo */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    animation: none;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    border: none;
}

.whatsapp-icon::before {
    display: none;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.whatsapp-pulse {
    display: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-card);
    color: white;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: none;
}

.whatsapp-tooltip::after {
    display: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Footer - Oscuro */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 30px;
    border-top: 2px solid var(--gray-light);
}

.footer::before {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    box-shadow: none;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
    font-family: 'Exo 2', sans-serif;
    padding-left: 0;
    text-transform: none;
    letter-spacing: normal;
}

.footer-link::before {
    display: none;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: none;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--gray-light);
}

.social-icon::before {
    display: none;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: none;
    color: white;
    border-color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.copyright span {
    color: white;
    text-shadow: none;
}

/* Efectos de cursor y glitch - ELIMINADOS */
.cursor-trail,
.glitch-effect {
    display: none;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-left: none;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: none;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--dark-card);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        border-left: 1px solid var(--gray-light);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .contact-container {
        padding: 40px;
    }
    
    .events-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
        column-gap: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .events-text {
        font-size: 1.5rem;
    }
    
    .logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
    }
    
    .video-actions-simple {
        flex-direction: column;
        align-items: center;
    }
    
    .video-actions-simple .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        max-width: 240px;
        padding: 10px 20px;
        font-size: 12px;
    }
}