:root {
    --primary-color: #264653;
    --secondary-color: #2a9d8f;
    --background-color: #f4f1ee;
    --card-background: #ffffff;
    --text-color: #264653;
    --border-color: #6c757d;
    --feature-tag: #f4f1ee;
    --tag-color: #2a9d8f;
    --tag-productivity: #2a9d8f;
    --tag-mobile: #2a9d8f;
    --tag-customize: #2a9d8f;
    --tag-performance: #2a9d8f;
    --nav-background: rgba(255, 255, 255, 0.9);
}

:root.dark-mode {
    --primary-color: #e0fbfc;
    --secondary-color: #3d9e8c;
    --background-color: #1e2a30;
    --card-background: #293540;
    --text-color: #e0fbfc;
    --border-color: #4d5e6c;
    --feature-tag: #1e2a30;
    --tag-color: #3d9e8c;
    --tag-productivity: #3d9e8c;
    --tag-mobile: #3d9e8c;
    --tag-customize: #3d9e8c;
    --tag-performance: #3d9e8c;
    --nav-background: rgba(41, 53, 64, 0.9);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

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

/* Navbar styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--nav-background);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 12px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    width: 33.33%;
}

.nav-logo {
    width: auto;
    height: 36px;
    object-fit: contain;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
}

.nav-logo-text {
    height: 24px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    justify-content: center;
    white-space: nowrap;
}

.nav-item {
    display: inline-block;
    margin: 0 10px;
}

.nav-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 5px 10px;
    border-radius: 12px;
}

.nav-item a:hover {
    color: var(--secondary-color);
    background-color: rgba(42, 157, 143, 0.1);
}

/* Espacio vacío a la derecha para equilibrar el logo */
.nav-container::after {
    content: '';
    width: 33.33%;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #264653, #2a9d8f);
    padding: 150px 0 100px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(38, 70, 83, 0.4); /* Oscurece el video */
    z-index: 1;
}

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

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Estilos para asegurar visibilidad del título en ambos modos */
header h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

h2 {
    font-size: 1.8rem;
    margin: 0 0 0.7rem 0;
    color: var(--text-color);
    font-weight: 400;
}

h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 400;
}

.logo {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: white;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-section {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 120px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

/* Alternamos el orden para los elementos pares */
.feature-section:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width: 45%;
    padding-top: 10px;
}

.feature-image {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.feature-image img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: none;
}

.tag {
    display: inline-block;
    background-color: var(--tag-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.tag.productivity {
    background-color: var(--tag-productivity);
}

.tag.mobile {
    background-color: var(--tag-mobile);
}

.tag.customize {
    background-color: var(--tag-customize);
}

.tag.performance {
    background-color: var(--tag-performance);
}

.steps {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 15px 0;
}

.steps li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 5px;
    color: var(--text-color);
}

.steps li::marker {
    color: var(--text-color);
    font-weight: normal;
}

.more-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.small-card {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    height: auto;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: none;
    position: relative;
    overflow: visible;
}

.small-card::after {
    display: none;
}

.small-card-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--card-background);
}

.small-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.small-card:hover .small-card-img img {
    transform: none;
}

.small-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.small-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-color);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 15px;
    align-self: flex-end;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(42, 157, 143, 0.2);
    border: none;
    position: relative;
}

.explore-btn::after {
    content: "+";
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0.8;
    font-size: 1.8rem;
    color: white;
}

.explore-btn:hover {
    background-color: #238b7e;
    box-shadow: 0 6px 12px rgba(42, 157, 143, 0.3);
    transform: scale(1.1);
}

.see-more-btn {
    display: block;
    margin: 40px auto;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    width: fit-content;
    text-align: center;
}

.see-more-btn:hover {
    background-color: #238b7e;
    transform: translateY(-2px);
    text-decoration: none;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-color);
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilos para secciones con títulos centrados */
.section-title {
    text-align: center;
    margin: 80px 0 30px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Selector de tema */
.theme-switch {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
}

.theme-switch i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 1;
    transition: transform 0.15s ease;
}

.theme-switch:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--secondary-color);
    background-color: rgba(42, 157, 143, 0.2);
}

/* Cambio de iconos para el modo oscuro */
:root.dark-mode .theme-switch i.fa-sun {
    color: #FFD700; /* Color amarillo dorado para el sol */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reemplazar el icono anterior con uno más brillante */
:root.dark-mode .theme-switch i.fa-sun::before {
    content: "\f185"; /* Código para fa-sun estándar */
}

/* Hero video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
}

/* Tarjeta de mensaje estilo Google */
.message-card {
    position: relative;
    margin: 0 auto 120px;
    border-radius: 12px;
    padding: 40px;
    overflow: hidden; 
    background: none;
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.message-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 2.3;
}

.message-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.message-content .tag {
    display: inline-block;
    margin-bottom: 16px;
}

.message-content h2 {
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
}

.message-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
}

.message-highlight {
    font-size: 1.2rem !important;
    color: white !important;
    margin: 30px 0 !important;
    font-weight: 500;
    position: relative;
    padding: 15px 0;
}

.message-highlight::before,
.message-highlight::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.message-highlight::before {
    top: 0;
}

.message-highlight::after {
    bottom: 0;
}

/* Modo oscuro - específico para mensaje */
:root.dark-mode .message-card {
    background-color: rgba(0, 0, 0, 0.85);
}

:root.dark-mode .message-content h2,
:root.dark-mode .message-content p,
:root.dark-mode .message-highlight {
    color: white !important;
}

@media (max-width: 1240px) {
    .navbar {
        width: 100%;
        top: 0;
        padding: 10px;
    }
    
    .nav-container {
        border-radius: 0;
    }

    .nav-menu {
        position: static;
        transform: none;
        width: auto;
        justify-content: center;
    }

    .logo-container {
        width: auto;
    }

    .nav-container::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        right: 0;
    }
    
    .theme-switch {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-right: 15px;
        background-color: rgba(42, 157, 143, 0.1);
    }
    
    .theme-switch:hover {
        transform: scale(1.1);
        background-color: rgba(42, 157, 143, 0.2);
    }
}

/* Ajustes específicos para 1024px */
@media (max-width: 1024px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px 0;
    }
    
    .nav-item {
        margin: 5px 8px;
    }
    
    .nav-item a {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
}

/* Solución específica para móviles alrededor de 770px */
@media (max-width: 800px) and (min-width: 769px) {
    .nav-menu {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        padding: 5px 0;
    }
    
    .nav-item {
        margin: 2px;
    }
    
    .nav-item a {
        font-size: 0.8rem;
        padding: 3px 5px;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .logo-container {
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .feature-section,
    .feature-section:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }

    .feature-content {
        max-width: 100%;
    }
    
    .more-features {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        transform: none;
    }
    
    .nav-item {
        margin: 0 10px;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
        position: relative;
    }
    
    .logo-container {
        width: auto;
    }
    
    .nav-container::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    header {
        padding: 100px 0 60px;
    }
    
    .message-card {
        padding: 30px 20px;
        margin-bottom: 80px;
    }
    
    .message-content h2 {
        font-size: 1.8rem;
    }
    
    .message-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .theme-switch {
        width: 36px;
        height: 36px;
        position: absolute;
        right: 20px;
        top: 15px;
        transform: none;
        margin-left: 0;
        background-color: rgba(42, 157, 143, 0.1);
    }
    
    .theme-switch i {
        width: 18px;
        height: 18px;
    }
    
    .theme-switch:hover {
        transform: scale(1.1);
        background-color: rgba(42, 157, 143, 0.2);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-item {
        margin: 5px;
    }
    
    .theme-switch {
        width: 32px;
        height: 32px;
        right: 15px;
        top: 15px;
    }
    
    .theme-switch i {
        width: 16px;
        height: 16px;
        font-size: 0.9rem;
    }
}

/* Módulo de Clientes */
.clients-module {
    position: relative;
    margin: 120px 0 80px;
    padding: 60px 0;
    overflow: hidden;
}

.clients-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(38, 70, 83, 0.05), rgba(42, 157, 143, 0.1));
    z-index: -1;
    border-radius: 20px;
}

.clients-container {
    max-width: 100%;
    padding: 20px 0;
    position: relative;
    margin: 40px 0;
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
}

.client-item {
    position: relative;
    width: 180px;
    height: 100px;
    border-radius: 12px;
    background-color: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Estilos específicos para logos blancos en modo claro */
.logo-white-bg img {
    filter: grayscale(100%) brightness(0.4);
}

.logo-white-bg:hover img {
    filter: grayscale(0%) brightness(0.6) !important;
}

/* Estilos específicos para modo oscuro */
:root.dark-mode .client-item {
    background-color: rgba(41, 53, 64, 0.8);
}

:root.dark-mode .client-item img {
    filter: grayscale(100%) brightness(1.5) invert(1);
    opacity: 0.9;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

:root.dark-mode .client-item:hover img {
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
    transform: scale(1.05);
}

.client-item .client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, var(--secondary-color), transparent);
    height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.client-item .client-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.client-item:hover .client-overlay {
    height: 35%;
    opacity: 1;
}

.client-item:hover .client-overlay span {
    transform: translateY(0);
}

.clients-quote {
    text-align: center;
    margin: 40px auto 0;
    max-width: 800px;
    font-style: italic;
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    vertical-align: sub;
    margin: 0 5px;
    opacity: 0.7;
}

/* Responsive para clientes */
@media (max-width: 768px) {
    .client-logos {
        gap: 25px;
    }
    
    .client-item {
        width: 150px;
        height: 90px;
        padding: 15px;
    }
    
    .clients-quote {
        font-size: 1rem;
        margin: 30px auto 0;
    }
}

@media (max-width: 480px) {
    .client-logos {
        gap: 15px;
    }
    
    .client-item {
        width: 120px;
        height: 80px;
        padding: 10px;
    }
    
    .client-item img {
        max-height: 50px;
    }
    
    .client-item .client-overlay span {
        font-size: 0.75rem;
    }
}

/* Animación de flotación para logos de clientes */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.client-item.floating {
    animation: float 5s ease-in-out infinite;
}

.client-item.floating:hover {
    animation-play-state: paused;
}

/* Estilos para el módulo de Comunidad */
.community-module {
    padding: 60px 0;
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
}

.community-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
}

.community-content {
    flex: 1;
    padding: 0 20px;
}

.community-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 500;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.community-node {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(42, 157, 143, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.community-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(42, 157, 143, 0.1);
}

.node-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(42, 157, 143, 0.05);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.node-icon i {
    font-size: 24px;
}

.community-node h3 {
    margin-bottom: 20px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}

.community-network {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.network-animation {
    flex: 1;
    min-height: 350px;
    position: relative;
}

#networkCanvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.community-quote {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.community-quote p {
    position: relative;
    display: inline-block;
}

.community-quote .quote-mark {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.7;
    line-height: 0;
    position: relative;
    vertical-align: -0.4em;
}

/* Media queries existentes */
@media (max-width: 1240px) {
    .navbar {
        width: 100%;
        top: 0;
        padding: 10px;
    }
    
    .nav-container {
        border-radius: 0;
    }

    .nav-menu {
        position: static;
        transform: none;
        width: auto;
        justify-content: center;
    }

    .logo-container {
        width: auto;
    }

    .nav-container::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        right: 0;
    }
    
    .theme-switch {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-right: 15px;
        background-color: rgba(42, 157, 143, 0.1);
    }
    
    .theme-switch:hover {
        transform: scale(1.1);
        background-color: rgba(42, 157, 143, 0.2);
    }
}

@media (max-width: 768px) {
    .feature-section,
    .feature-section:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }

    .feature-content {
        max-width: 100%;
    }
    
    .more-features {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        transform: none;
    }
    
    .nav-item {
        margin: 0 10px;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
        position: relative;
    }
    
    .logo-container {
        width: auto;
    }
    
    .nav-container::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    header {
        padding: 100px 0 60px;
    }
    
    .message-card {
        padding: 30px 20px;
        margin-bottom: 80px;
    }
    
    .message-content h2 {
        font-size: 1.8rem;
    }
    
    .message-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .theme-switch {
        width: 36px;
        height: 36px;
        position: absolute;
        right: 20px;
        top: 15px;
        transform: none;
        margin-left: 0;
        background-color: rgba(42, 157, 143, 0.1);
    }
    
    .theme-switch i {
        width: 18px;
        height: 18px;
    }
    
    .theme-switch:hover {
        transform: scale(1.1);
        background-color: rgba(42, 157, 143, 0.2);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-item {
        margin: 5px;
    }
    
    .theme-switch {
        width: 32px;
        height: 32px;
        right: 15px;
        top: 15px;
    }
    
    .theme-switch i {
        width: 16px;
        height: 16px;
        font-size: 0.9rem;
    }
}

/* Media queries para el módulo de comunidad */
@media (max-width: 992px) {
    .community-container {
        flex-direction: column;
    }

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

    .network-animation {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .community-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .community-grid {
        grid-template-columns: 1fr;
    }

    .community-node {
        padding: 20px 15px;
    }

    .node-icon {
        width: 50px;
        height: 50px;
    }

    .community-quote {
        font-size: 1rem;
    }
}

:root.dark-mode .community-node {
    background-color: rgba(41, 53, 64, 0.5);
    border: 1px solid rgba(61, 158, 140, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

:root.dark-mode .node-icon {
    background-color: rgba(61, 158, 140, 0.1);
}

/* Estilos para el bloque de pasos para unirse a la comunidad */
.join-community-module {
    padding: 60px 0;
    margin-bottom: 80px;
    position: relative;
}

.join-community-module::before {
    background-image: none;
    opacity: 0;
}

:root.dark-mode .join-community-module::before {
    background-image: none;
}

.join-steps {
    padding-top: 0;
    margin-top: 0;
    position: relative;
    margin-bottom: 70px;
}

/* Flechas que conectan los pasos */
.join-steps::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -10%;
    right: -10%;
    z-index: 1;
    background: none;
    border-top: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1100' height='120' viewBox='0 0 1100 120'%3E%3Cpath d='M20,60 C60,20 100,100 140,40 C180,0 220,80 260,30 C300,0 340,80 380,40 C420,0 460,100 500,50 C540,15 580,75 620,30 C660,0 700,60 740,20 C780,0 820,70 860,35 C900,10 940,80 980,40 C1020,10 1050,60 1070,60' fill='none' stroke='%23264653' stroke-width='3' stroke-dasharray='8 8'/%3E%3Cpolygon points='1085,60 1070,53 1070,67' fill='%23264653'/%3E%3C/svg%3E");
    background-size: 120% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 120px;
}

.join-steps::after {
    display: none;
}

:root.dark-mode .join-steps::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1100' height='120' viewBox='0 0 1100 120'%3E%3Cpath d='M20,60 C60,20 100,100 140,40 C180,0 220,80 260,30 C300,0 340,80 380,40 C420,0 460,100 500,50 C540,15 580,75 620,30 C660,0 700,60 740,20 C780,0 820,70 860,35 C900,10 940,80 980,40 C1020,10 1050,60 1070,60' fill='none' stroke='%23e0fbfc' stroke-width='3' stroke-dasharray='8 8'/%3E%3Cpolygon points='1085,60 1070,53 1070,67' fill='%23e0fbfc'/%3E%3C/svg%3E");
    top: 0px;
}

:root.dark-mode .join-steps::after {
    display: none;
}

.join-steps-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.join-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.join-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.join-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.join-step::after {
    display: none;
}

.join-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(25% - 15px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(42, 157, 143, 0.05);
    position: relative;
    z-index: 3;
}

.join-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(42, 157, 143, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.step-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    color: #0088cc; /* Color de Telegram */
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.telegram-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.telegram-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.join-now-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.join-now-btn:hover {
    background-color: #238b7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(42, 157, 143, 0.2);
}

/* Bloque CTA Solicitar Proyecto */
.cta-project-section {
    margin: 100px 0;
    padding: 0 20px;
    position: relative;
}

.cta-project-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #238b7e 100%);
    border-radius: 20px;
    padding: 70px 50px;
    box-shadow: 0 10px 40px rgba(42, 157, 143, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-project-container::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-subtle 6s ease-in-out infinite;
}

.cta-project-container::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-subtle 8s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}

.cta-project-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-project-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.95);
    animation: float-gentle 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.cta-project-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 24px 0;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.cta-project-text {
    font-size: 1.15rem;
    margin: 0 0 45px 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.cta-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: #f8f9fa;
}

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

.cta-project-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.cta-project-btn:hover i {
    transform: translateX(4px);
}

/* Estilos para modo oscuro */
:root.dark-mode .cta-project-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8a7a 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Responsive para bloque CTA */
@media (max-width: 768px) {
    .cta-project-section {
        margin: 70px 0;
        padding: 0 15px;
    }

    .cta-project-container {
        padding: 50px 30px;
        border-radius: 16px;
    }

    .cta-project-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .cta-project-title {
        font-size: 1.65rem;
        margin-bottom: 20px;
        line-height: 1.35;
    }

    .cta-project-text {
        font-size: 1.05rem;
        margin-bottom: 35px;
        line-height: 1.65;
    }

    .cta-project-btn {
        padding: 13px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-project-section {
        margin: 60px 0;
        padding: 0 10px;
    }

    .cta-project-container {
        padding: 40px 25px;
        border-radius: 14px;
    }

    .cta-project-icon {
        font-size: 2.8rem;
        margin-bottom: 18px;
    }

    .cta-project-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .cta-project-text {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .cta-project-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* Estilos para modo oscuro */
:root.dark-mode .join-step {
    background-color: rgba(41, 53, 64, 0.7);
    border-color: rgba(61, 158, 140, 0.1);
}

:root.dark-mode .step-number {
    background-color: var(--secondary-color);
}

:root.dark-mode .step-content h3 {
    color: var(--primary-color);
}

/* Media queries para el bloque de unirse a la comunidad */
@media (max-width: 992px) {
    .join-steps::before {
        height: 90px;
        background-size: contain;
        background-position: top center;
        top: 0px;
        left: -5%;
        right: -5%;
    }
    
    .join-steps {
        padding-top: 70px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .join-step {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .join-title {
        font-size: 1.8rem;
    }
    
    .join-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .join-step {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .join-step {
        width: 100%;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .join-now-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* Productos Module */
.products-module {
    padding: 80px 0 60px;
    margin: 30px 0 60px;
    position: relative;
    overflow: hidden;
    background-color: rgba(231, 111, 81, 0.05);
    border-radius: 20px;
}

.products-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(231, 111, 81, 0.08) 0%, rgba(231, 111, 81, 0.02) 70%);
    z-index: -1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin: -5px auto 30px;
    color: var(--secondary-color);
    max-width: 600px;
}

/* Producto Accordion */
.product-accordion {
    max-width: 800px;
    margin: 40px auto;
}

.product-slide {
    background-color: var(--card-background);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.product-header {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.product-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

.product-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    opacity: 0.5;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-icon i {
    font-size: 20px;
    color: white;
}

.product-slide h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    flex-grow: 1;
}

.expand-icon {
    transition: transform 0.3s ease;
}

.product-slide.active .expand-icon {
    transform: rotate(180deg);
}

.product-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.product-slide.active .product-content {
    max-height: 400px;
    padding: 0 20px 20px;
}

.product-description {
    margin-bottom: 15px;
    color: var(--text-color);
    opacity: 0.9;
}

.product-features {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-features li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 5px;
    line-height: 1.4;
    font-size: 0.95rem;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--secondary-color);
    font-weight: bold;
}

.product-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.product-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.product-link:hover i {
    transform: translateX(3px);
}

/* Barra de progreso lateral */
.progress-bar-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 5px;
    background-color: rgba(42, 157, 143, 0.1);
    z-index: 1;
}

.progress-indicator {
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: height 0.1s linear;
}

.product-slide.completed .progress-indicator {
    height: 100%;
}

/* Estilos para modo oscuro */
:root.dark-mode .product-slide {
    background-color: var(--card-background);
}

:root.dark-mode .progress-bar-container {
    background-color: rgba(61, 158, 140, 0.1);
}

:root.dark-mode .progress-indicator {
    background-color: var(--secondary-color);
}

/* Media queries */
@media (max-width: 992px) {
    .product-accordion {
        margin: 40px 20px;
    }
}

@media (max-width: 768px) {
    .products-module {
        padding: 60px 0 40px;
    }
    
    .product-slide h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .product-header {
        padding: 15px;
    }
    
    .product-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .product-icon::after {
        width: 50px;
        height: 50px;
    }
    
    .product-icon i {
        font-size: 18px;
    }
    
    .product-slide h3 {
        font-size: 1rem;
    }
} 

/* Estilos para la sección de contacto */
.contact-module {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.03), rgba(42, 157, 143, 0.03));
    border-radius: 30px;
    margin: 40px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-left {
    flex: 0 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-right {
    flex: 0 1 500px;
}

.contact-left .section-title {
    margin: 5px 0 30px;
    text-align: center;
}

.contact-left .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.contact-button:hover {
    background-color: var(--primary-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--card-background);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--card-background);
    color: var(--text-color);
}

.send-options {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.send-dropdown-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.send-dropdown-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.send-dropdown-btn i {
    transition: transform 0.3s ease;
}

.send-dropdown-btn.active {
    background-color: var(--secondary-color);
}

.send-dropdown-btn.active i {
    transform: rotate(180deg);
}

.send-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-background);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1;
    margin-top: 10px;
}

.send-dropdown-content.active {
    display: block;
}

.send-option {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.send-option:hover {
    background-color: var(--secondary-color);
    color: white;
}

.send-option i {
    font-size: 1.2rem;
}

.send-option:first-child {
    border-radius: 15px 15px 0 0;
}

.send-option:last-child {
    border-radius: 0 0 15px 15px;
}

/* Colores específicos para los iconos */
.send-option i.fa-telegram {
    color: #0088cc;
}

.send-option i.fa-whatsapp {
    color: #25D366;
}

.send-option i.fa-envelope {
    color: #e76f51;
}

/* Modo oscuro */
.dark-mode .contact-module {
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.1), rgba(42, 157, 143, 0.1));
}

.dark-mode .input-group input,
.dark-mode .input-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .send-dropdown-content {
    background: #2d2d2d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .contact-left {
        padding-top: 0;
        margin-bottom: 5px;
    }
    
    /* Ajuste del formulario de contacto para móviles */
    .contact-form {
        width: 100%;
    }
    
    .input-group input,
    .input-group textarea {
        font-size: 16px; /* Previene el zoom en iOS */
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(108, 117, 125, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .input-group textarea {
        min-height: 100px;
    }
    
    .send-options {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .send-dropdown-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 16px;
    }
    
    .send-dropdown-btn i {
        display: none; /* Ocultar la flecha en móvil */
    }
    
    .send-dropdown-content {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    /* Reducir altura del módulo de contacto en móvil */
    .contact-module {
        padding: 20px 0;
        margin: 15px 0;
        border-radius: 15px;
    }
    
    .contact-left .section-title {
        margin: 0 0 10px;
        font-size: 1.6rem;
    }
    
    .contact-left .section-title::after {
        margin-top: 8px;
        height: 2px;
        width: 50px;
    }
    
    .contact-subtitle {
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .input-group {
        margin-bottom: 0;
    }
    
    .contact-form {
        gap: 10px;
    }
}

/* Ocultar la flecha de los pasos en versión móvil */
@media (max-width: 768px) {
    .join-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Ajustes adicionales para dispositivos muy pequeños */
    .contact-module {
        padding: 15px 0;
        margin: 10px 0;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 10px;
        border-radius: 8px;
    }
    
    .input-group textarea {
        min-height: 70px;
    }
    
    .send-dropdown-btn {
        border-radius: 8px;
        padding: 10px;
    }
    
    .contact-form {
        gap: 8px;
    }
    
    .contact-left .section-title {
        font-size: 1.5rem;
    }
} 