.pricing-description {
    font-size: 15px;
}/* Main CSS */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-gradient-start: #00ff9d;
    --accent-gradient-middle: #00a2ff;
    --accent-gradient-end: #ff00ff;
    --gray-light: #ffffff;
    --gray-medium: #e0e0e0;
    --gray-dark: #666666;
    --text-color: rgb(133, 132, 129);
    --border-radius: 30px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* User Avatar Styles */
.user-avatar {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6b7280 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.avatar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.avatar-circle span {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--gray-medium);
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--gray-medium);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
    color: var(--gray-dark);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    font-size: 18px;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 500;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    opacity: 0.8;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

section {
    padding: 4rem 0;
}

/* Header Styles - MOVED TO header.css */

/* Header layout moved to header.css */

/* Responsive header rules moved to header.css */

/* CTA Button Section */
.cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector */
.language-selector select {
    height: 48px;
    padding: 0 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 100px;
}

/* Header section moved to header.css */

/* Header-specific responsive rules have been moved to header.css */

/* Específico para selector de idioma: mover al menú sólo en <768px */
@media (max-width: 768px) {
  /* Ocultar selector del header en móviles pequeños */
  .right-section .language-selector {
    display: none !important;
  }
  /* Mostrar selector dentro del menú hamburguesa en móviles pequeños */
  .mobile-language-selector {
    display: block !important;
  }
  /* Eliminar padding del container dentro del header en móvil */
  .header .container {
    padding: 0; /* Sin padding en móvil dentro del header */
  }
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    font-weight: 500;
}

/* Button Styles */
.btn {
    display: inline-flex !important; /* Forzar flex para centrado */
    align-items: center !important; /* Centrado vertical del contenido */
    justify-content: center !important; /* Centrado horizontal del contenido */
    padding: 0 1.5rem; /* Solo padding horizontal */
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    vertical-align: middle;
    line-height: 1;
    height: 48px; /* Altura exacta igual al selector */
    box-sizing: border-box;
    border: none; /* Asegurar que no hay borde que afecte la altura */
    text-decoration: none !important;
}

/* Específico para el botón primario */
.btn-primary {
    background-color: #364153;
    color: white;
    height: 48px; /* Reforzar la altura */
    min-height: 48px; /* Altura mínima */
}

.btn-primary:hover {
    background-color: #2d3748;
}

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

.btn-secondary:hover {
    background-color: var(--gray-light);
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive para botones */
@media (max-width: 1024px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        height: 42px;
        min-height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        height: 38px;
        min-height: 38px;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--gray-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.lead .ava-name {
    font-weight: 500;
}

.lead .ava-description {
    font-weight: 400;
}

/* Casos de Uso Section */
.casos-uso {
    background-color: var(--secondary-color);
    text-align: left;
    padding: 2rem 0 4rem;
}

.feature-box {
    background-color: var(--secondary-color);
    border-radius: 0;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gradient-middle);
}

.why-ava {
    margin: 2rem 0;
}

.cta-section {
    display: none;
}

.cta-section h3 {
    color: var(--primary-color);
}

.free-features {
    margin-top: 3rem;
}

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

.feature-item {
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: left;
}

.feature-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

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

/* Planes y Precios Section */
.planes-precios {
    background-color: var(--gray-light);
}

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

.pricing-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid #3b82f6;
    padding: 2rem;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border: 2px solid var(--accent-gradient-middle);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header .subtitle {
    font-style: normal;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 15px;
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 500;
}

.price .period {
    font-size: 18px;
    color: var(--gray-dark);
}

.price-subtitle {
    font-size: 15px;
    color: var(--primary-color);
    margin-top: -0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
    font-size: 15px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.features-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.features-table td:last-child {
    text-align: right;
}

.check {
    color: green;
}

.cross {
    color: red;
}

/* TABLA DE COMPARACIÓN - SOLUCIÓN COMPATIBLE CON ESTRUCTURA HTML EXISTENTE */
/* Contenedor principal con overflow hidden para evitar que nada sobresalga */
.pricing-features {
    overflow: hidden;
    margin-bottom: 2rem;
    font-size: 15px;
}

/* Tabla con estructura tradicional pero sin bordes laterales */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background-color: var(--secondary-color);
    table-layout: fixed;
}

/* Estilos para todas las celdas */
.comparison-table th,
.comparison-table td {
    padding: 0.75rem;
    word-wrap: break-word;
    hyphens: auto;
    border-bottom: 1px solid var(--gray-medium);
    background-color: var(--secondary-color);
    border-left: none;
    border-right: none;
}

/* Encabezados con fondo gris */
.comparison-table th {
    background-color: var(--gray-light);
    font-weight: 500;
    line-height: 1.3;
}

/* Primera columna (Funcionalidad) */
.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 40%;
    text-align: left;
}

/* Segunda columna (AVA Free) */
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    width: 30%;
    text-align: center;
    padding-right: 10px;
}

/* Tercera columna (AVA Plus) - Ajustada para acercarla a la segunda */
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    width: 30%;
    text-align: center;
    padding-left: 10px;
}

/* Eliminar cualquier borde entre columnas */
.comparison-table tr td,
.comparison-table tr th {
    border-left: none !important;
    border-right: none !important;
}

/* Ajustes específicos para idiomas con texto largo */
[lang="ru"] .comparison-table,
[lang="de"] .comparison-table {
    font-size: 14px;
}

[lang="ru"] .comparison-table th,
[lang="ru"] .comparison-table td,
[lang="de"] .comparison-table th,
[lang="de"] .comparison-table td {
    padding: 0.6rem;
    line-height: 1.3;
}

/* Ajuste para móviles (ampliado a 1024px) */
@media (max-width: 1024px) {
    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 40%;
    }
    
    .comparison-table th:nth-child(2),
    .comparison-table td:nth-child(2) {
        width: 30%;
        padding-right: 5px;
    }
    
    .comparison-table th:nth-child(3),
    .comparison-table td:nth-child(3) {
        width: 30%;
        padding-left: 5px;
    }
}

.pricing-cta {
    text-align: center;
    margin: 1rem 0;
}

.pricing-cta .btn {
    width: 90%;
    display: block;
    margin: 0 auto;
}

/* Redes Sociales Section */
.redes-sociales {
    text-align: center;
}

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

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--gray-light);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-card.linkedin i {
    color: #0077b5;
}

.social-card.twitter i {
    color: #1da1f2;
}

.social-card.youtube i {
    color: #ff0000;
}

.social-card.tiktok i {
    color: #000000;
}

.social-card.instagram i {
    color: #c13584;
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gradient-middle);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
}

/* RESPONSIVE DESIGN - VOLVER AL ORIGINAL SIMPLE */

/* Desktop - Asegurar que botón Comenzar esté bien posicionado */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header responsive moved entirely to header.css */
