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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn--secondary {
    background: transparent;
    color: #20304b;
    border: 2px solid #20304b;
}

.btn--secondary:hover {
    background: #20304b;
    color: white;
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-horizontal {
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
/* Estilos responsivos para el logo horizontal en navegación */
@media (max-width: 768px) {
    .nav__logo-horizontal {
        height: 30px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .nav__logo-horizontal {
        height: 25px;
        max-width: 120px;
    }
}

}

.nav__title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #20304b;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('src/img/escena-de-un-robot-de-dibujos-animados.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%231E3A8A" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero__description {
    font-size: 20px;
    color: #3c3c3c;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #20304b;
    margin-bottom: 4px;
}

.stat__label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
    color: #20304b;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card--featured {
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    color: white;
    transform: scale(1.05);
}

.service-card--featured:hover {
/* Variante púrpura para iconos especiales */
.service-card__icon--purple {
    background: linear-gradient(135deg, #7c6fcc 0%, #20304b 100%) !important;
}

/* Efectos hover con colores corporativos */
.service-card:hover .service-card__icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradiente especial para sección CTA */
.cta {
    background: linear-gradient(135deg, #49e5b7 0%, #6ef0c7 50%, #178a64 100%) !important;
}

/* Destacar algunos elementos con turquesa */
.hero__stats .stat:hover .stat__number {
    color: #49e5b7;
    transition: color 0.3s ease;
}

/* Sombras con colores corporativos */
.btn--primary:hover {
    box-shadow: 0 8px 25px rgba(32, 48, 75, 0.4);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(124, 111, 204, 0.15);
}

/* Actualizar algunos fondos */
.hero {
    background: linear-gradient(135deg, #f0fdf9 0%, #faf8ff 100%) !important;
}

.about {
    background: linear-gradient(135deg, #faf8ff 0%, #f0fdf9 100%) !important;
}

    transform: scale(1.05) translateY(-8px);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card--featured .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card__icon i {
    font-size: 28px;
    color: white;
}

.service-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.service-card__features {
    list-style: none;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.service-card__features i {
    color: #10b981;
    font-size: 16px;
}

.service-card--featured .service-card__features i {
    color: #a7f3d0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about__description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value {
    display: flex;
    gap: 20px;
}

.value__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value__icon i {
    font-size: 24px;
    color: white;
}

.value__content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.value__content p {
    color: #666;
    line-height: 1.6;
}

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

.about__graphic {
    position: relative;
    width: 400px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.metric-card {
    position: relative;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 180px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #49e5b7;
}

.metric-card:first-child {
    align-self: flex-start;
    margin-bottom: 40px;
}

.metric-card:last-child {
    align-self: flex-end;
}

.metric-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #20304b;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: linear-gradient(135deg, #20304b 0%, #1a2332 100%);
    color: white;
}

.methodology__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.methodology__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.methodology__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.methodology__tools {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid #49e5b7;
}

.tool-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.tool-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tool-card__icon i {
    font-size: 20px;
    color: white;
}

.tool-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #49e5b7;
    position: sticky;
    top: 100px;
}

.pricing-card__header {
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    color: white;
    padding: 32px 24px;
    text-align: center;
}

.pricing-card__header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-card__price .currency {
    font-size: 18px;
    font-weight: 500;
}

.pricing-card__price .amount {
    font-size: 36px;
    font-weight: 700;
}

.pricing-card__price .period {
    font-size: 16px;
    font-weight: 500;
}

.pricing-card__price--colombia {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}

.pricing-card__price--international {
    font-size: 0.9em;
    opacity: 0.9;
}

.pricing-card__features {
    padding: 32px 24px;
}

.feature-group {
    margin-bottom: 32px;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group h4 {
    font-size: 18px;
    font-weight: 600;
    color: #20304b;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.feature-group li i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

/* Support Highlight Section */
.support-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    margin: 24px;
    border: 2px solid #49e5b7;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-highlight__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-highlight__icon i {
    font-size: 20px;
    color: white;
}

.support-highlight__content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #20304b;
}

.support-highlight__content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.pricing-card__cta {
    padding: 0 24px 32px;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: white;
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.use-case-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(73, 229, 183, 0.2);
}

.use-case-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-card__icon {
    transform: scale(1.1);
}

.use-case-card__icon i {
    font-size: 28px;
    color: white;
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #20304b;
    margin-bottom: 12px;
}

.use-case-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.comparison__table-wrapper {
    margin-bottom: 60px;
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: white;
}

.comparison__table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    display: table;
}

.comparison__header {
    display: table-row;
    background: linear-gradient(135deg, #20304b 0%, #1a2332 100%);
    color: white;
}

.comparison__row {
    display: table-row;
    transition: all 0.3s ease;
}

.comparison__row:nth-child(even) {
    background: #f8fafc;
}

.comparison__row:hover {
    background: #f0f9ff;
    transform: scale(1.01);
}

.comparison__cell {
    display: table-cell;
    padding: 24px 20px;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
}

.comparison__cell--feature {
    width: 25%;
    font-weight: 600;
    color: #20304b;
    border-right: 1px solid #e5e7eb;
}

.comparison__header .comparison__cell--feature {
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison__cell--chatversa {
    width: 37.5%;
    background: linear-gradient(135deg, rgba(73, 229, 183, 0.05) 0%, rgba(29, 181, 132, 0.05) 100%);
    border-right: 1px solid #e5e7eb;
    position: relative;
}

.comparison__header .comparison__cell--chatversa {
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison__cell--competitor {
    width: 37.5%;
    color: #fff;
    font-weight: 600;
}

.comparison__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.comparison__brand i {
    color: #fbbf24;
}

.comparison__cell i.fas {
    margin-right: 12px;
    font-size: 18px;
}

.comparison__cell--chatversa i.fa-check-circle {
    color: #10b981;
}

.comparison__cell--competitor i.fa-times-circle {
    color: #ef4444;
}

.comparison__cell--competitor i.fa-minus-circle {
    color: #f59e0b;
}

.comparison__cell span {
    display: inline-block;
    line-height: 1.5;
}

.comparison__cell small {
    display: block;
    color: #6b7280;
    font-style: italic;
    margin-top: 4px;
}

.comparison__cell--chatversa small {
    color: #059669;
}

.comparison__cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #49e5b7;
}

.comparison__cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #20304b;
    margin-bottom: 12px;
}

.comparison__cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

/* Responsive for comparison table */
@media (max-width: 768px) {
    .comparison__table {
        min-width: 700px;
    }

    .comparison__cell {
        padding: 16px 12px;
        font-size: 14px;
    }

    .comparison__cell--feature {
        width: 30%;
    }

    .comparison__cell--chatversa,
    .comparison__cell--competitor {
        width: 35%;
    }

    .comparison__brand {
        font-size: 16px;
    }

    .comparison__cta {
        padding: 30px 20px;
    }

    .comparison__cta h3 {
        font-size: 24px;
    }

    .comparison__cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .comparison__table {
        min-width: 600px;
    }

    .comparison__cell {
        padding: 12px 8px;
        font-size: 13px;
    }

    .comparison__cta {
        padding: 24px 16px;
    }

    .comparison__cta h3 {
        font-size: 20px;
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .methodology__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology__title {
        font-size: 32px;
    }

    .pricing-card {
        position: static;
    }

    .use-cases__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .tool-card {
        padding: 20px;
    }

    .pricing-card__features {
        padding: 24px 20px;
    }

    .pricing-card__cta {
        padding: 0 20px 24px;
    }

    .support-highlight {
        flex-direction: column;
        text-align: center;
    }

    .support-highlight__icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .methodology__title {
        font-size: 28px;
    }

    .use-cases__grid {
        grid-template-columns: 1fr;
    }

    .pricing-card__price .amount {
        font-size: 28px;
    }

    .use-case-card {
        padding: 24px 20px;
    }

    .support-highlight {
        padding: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__stars i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.testimonial-card__info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonial-card__info span {
    font-size: 14px;
    color: #666;
}

.footer__logo-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta__description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para las oficinas de contacto */
.contact__offices {
    margin-bottom: 24px;
}

.contact__offices-title {
    font-size: 18px;
    font-weight: 600;
    color: #20304b;
    margin-bottom: 16px;
}

.contact__office {
    margin-bottom: 16px;
    padding: 12px 0;
}

.contact__office-info {
    line-height: 1.5;
}

.contact__office-info strong {
    color: #20304b;
    font-weight: 600;
}

.contact__whatsapp {
    color: #49e5b7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact__whatsapp:hover {
    color: #3dd9a8;
}

/* WhatsApp icon específico */
.contact__item .fa-whatsapp {
    color: #25D366;
}

/* Mejorar espaciado en móviles */
@media (max-width: 768px) {
    .contact__office {
        margin-bottom: 20px;
        padding: 16px;
        background: #f8fafc;
        border-radius: 8px;
        border-left: 3px solid #49e5b7;
    }

    .contact__offices-title {
        font-size: 16px;
    }
}

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

.cta .btn--primary {
    background: white;
    color: #20304b;
}

.cta .btn--primary:hover {
    background: #f8fafc;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact__description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.contact__item i {
    color: #20304b;
    width: 20px;
}

.contact__form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form__group {
    margin-bottom: 24px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #20304b;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand {
    max-width: 400px;
}

.footer__title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #49e5b7 0%, #1db584 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.footer__description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer__heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 8px;
}

.footer__list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 18px;
    }

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

    .hero__stats {
        justify-content: center;
        gap: 20px;
    }

    .hero__graphic {
        width: 300px;
        height: 300px;
    }

    /* Sections */
    .section-title {
        font-size: 32px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__title {
        font-size: 28px;
    }

    .about__graphic {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .metric-card {
        min-width: 160px;
        padding: 20px 24px;
        margin-bottom: 20px;
    }

    .metric-card:first-child {
        align-self: center;
        margin-bottom: 20px;
    }

    .metric-card:last-child {
        align-self: center;
    }

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

    .cta__title {
        font-size: 32px;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__title {
        font-size: 28px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        font-size: 12px;
        padding: 12px 16px;
    }

    .contact__form {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all internal links */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}
