:root {
    --primary-color: #2962BF;
    --primary-dark: #1e4b96;
    --primary-light: #4d7fd1;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

/* Utilidades */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--gradient);
    opacity: 0.8;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.cutom-dev-features  {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    animation: float 30s linear infinite;
}

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

@keyframes float {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    50% {
        text-shadow: 0 0 15px rgba(255,255,255,0.5);
    }
}

.hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 1;
}

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

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Charts */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.chart-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.chart {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.chart canvas {
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.chart-insights {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.insight-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.insight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.chart-insights p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0.5rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

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

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

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

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-light);
}

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

/* Animaciones */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up:not(.stat-item) {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.animate-slide-up-delay:not(.stat-item) {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid,
    .charts-container,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .charts-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0;
    }

    .chart-wrapper {
        padding: 1rem 0.5rem;
        margin: 0;
        border-radius: 10px;
    }

    .chart {
        height: 250px;
    }

    .chart-header {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .chart-header h3 {
        font-size: 1.2rem;
    }

    .chart-insights {
        padding: 0.75rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .charts-container {
        padding: 0;
    }

    .chart-wrapper {
        padding: 1rem 0.5rem;
        border-radius: 10px;
        margin: 0 0.5rem;
    }

    .chart {
        height: 200px;
    }

    .chart-insights {
        margin: 1rem 0.5rem;
    }

    .logo {
        max-width: 180px;
        margin-bottom: 1rem;
    }
}

/* Espacios Publicitarios */
.spaces-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.space-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.space-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.space-category h3 i {
    font-size: 1.8rem;
}

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

.space-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-bg);
    transition: var(--transition);
}

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

.space-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

/* Clase específica para iconos de apps */
.space-icon .space-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    padding: 0;
    transition: transform 0.3s ease;
}

/* Efecto hover para los iconos de apps */
.space-icon:hover .space-logo {
    transform: scale(1.05);
}

.space-icon.special {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(41, 98, 191, 0.2);
    transition: var(--transition);
}

.space-icon.special i {
    font-size: 3rem;
    transition: var(--transition);
}

.space-item:hover .space-icon.special {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(41, 98, 191, 0.3);
}

.space-item:hover .space-icon.special i {
    transform: scale(1.1);
}

.space-content {
    text-align: center;
    width: 100%;
}

.space-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.space-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.space-content h4 a:hover {
    color: var(--primary-color);
}

.space-content h4 a i {
    font-size: 0.8em;
    opacity: 0.7;
}

.space-content h4 a:hover i {
    opacity: 1;
}

.space-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.space-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.1rem;
}

.space-features li {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.space-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.space-features .highlight-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.highlight-stat i {
    color: var(--success);
    font-size: 1.4rem;
}

.space-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.space-badge i {
    color: var(--danger);
}

@media (max-width: 768px) {
    .spaces-list {
        grid-template-columns: 1fr;
    }

    .space-item {
        padding: 1.5rem;
    }

    .space-features {
        align-items: center;
    }

    .space-badge {
        margin: 1rem auto;
        justify-content: center;
    }

    .space-icon {
        width: 90px;
        height: 90px;
    }
    
    .space-icon .space-logo {
        border-radius: 18px;
    }

    .space-icon.special i {
        font-size: 2.5rem;
    }
}

/* Sobre Pamplonews */
.about-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
    overflow: hidden;
    margin-left: 1rem;
    margin-right: 1rem;
    box-sizing: border-box;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--light-bg);
    transition: var(--transition);
    height: 100%;
    width: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover i {
    background: var(--primary-color);
    color: var(--white);
}

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

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-description {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-description h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-list i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Timeline */
.achievement-timeline {
    margin-top: 4rem;
}

.achievement-timeline h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 1.5rem;
        margin: 0.5rem;
        border-radius: 15px;
    }

    .lead-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-item i {
        margin-bottom: 1rem;
    }

    .stats-grid {
        margin: 2rem auto;
    }

    .stat-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-wrapper {
        margin: 0;
        border-radius: 0;
        padding: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .lead-text {
        font-size: 1.1rem;
        padding: 0;
    }
}

/* Ventajas Competitivas */
.bg-gradient {
    background: var(--gradient);
    color: var(--white);
}

.advantages-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.advantage-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.advantage-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.advantage-features i {
    color: var(--warning);
    font-size: 1rem;
}

.advantages-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.section-title.light {
    color: var(--white);
}

.section-title.light::after {
    background: var(--white);
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

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

    .advantage-card {
        text-align: center;
    }

    .advantage-icon {
        margin: 0 auto 1.5rem;
    }

    .advantage-features {
        align-items: center;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }
}

/* Estadísticas y Gráficos */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.highlight-icon i {
    font-size: 1.8rem;
}

.highlight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.highlight-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.audience-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .stat-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-icon {
        margin-bottom: 1rem;
    }

    .chart-header {
        flex-direction: column;
        text-align: center;
    }

    .chart-header i {
        margin: 0 auto;
    }
}

/* Espacios de Sponsorización */
.sponsorship-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.kpi-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.kpi-item.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success));
}

.kpi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.kpi-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.kpi-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-info p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.category-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

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

.space-item {
    position: relative;
    overflow: hidden;
}

.space-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .sponsorship-kpis {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .about-wrapper {
        padding: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}

/* Asegurar que todos los elementos con ancho completo respeten el border-box */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Sección Desarrollo a Medida */
.custom-development {
    margin-top: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 25px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.custom-dev-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.custom-dev-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.custom-dev-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.custom-development h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.custom-development h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.custom-development p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.custom-dev-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.custom-dev-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.custom-dev-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.custom-dev-features i {
    color: var(--white);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.custom-development .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    transition: transform 0.3s ease;
}

.custom-development .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .custom-development {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .custom-development h2 {
        font-size: 2rem;
    }
    
    .custom-dev-features {
        align-items: stretch;
    }

    .custom-dev-features li {
        width: 100%;
    }
}

/* Tooltip Styles */
.tooltip-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: help;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: var(--primary-dark);
}

.tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: var(--white);
    color: var(--text-color);
    text-align: left;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 140%;
}

@media (max-width: 768px) {
    .tooltip {
        width: 250px;
        font-size: 0.8rem;
        left: auto;
        right: 0;
        transform: none;
    }
    
    .tooltip::after {
        left: auto;
        right: 16px;
    }
}

/* Estilos para la sección de Premio */
.award-section {
    background: linear-gradient(135deg, rgba(41, 98, 191, 0.05), rgba(41, 98, 191, 0.02));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232962BF' fill-opacity='0.03'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.award-container {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    text-align: center;
}

.award-content {
    max-width: 800px;
    margin: 0 auto;
}

.award-badge {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(41, 98, 191, 0.2);
}

.award-badge i {
    font-size: 3rem;
    color: var(--white);
}

.award-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.award-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.award-link i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.award-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41, 98, 191, 0.2);
}

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

@media (max-width: 768px) {
    .award-title {
        font-size: 2.5rem;
    }

    .award-subtitle {
        font-size: 1.2rem;
    }

    .award-description {
        font-size: 1.1rem;
    }

    .award-badge {
        width: 100px;
        height: 100px;
    }

    .award-badge i {
        font-size: 2.5rem;
    }

    .award-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Estilos para la sección de Prensa */
.press-section {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.press-section .section-title,
.press-section .section-subtitle {
    color: var(--white);
}

.press-section .section-title::after {
    background: var(--white);
}

.press-carousel {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.press-card {
    min-width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.press-quote {
    position: relative;
    margin-bottom: 2rem;
}

.press-quote i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.press-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-left: 1rem;
}

.quote-author {
    font-weight: 600;
    color: var(--white);
    margin-top: 1rem;
    text-align: right;
}

.press-source {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-source a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.press-source a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.source-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.press-source i {
    font-size: 1rem;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--white);
}

.carousel-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .press-card {
        padding: 2rem;
    }
    
    .press-quote p {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .source-logo {
        height: 35px;
    }
}

/* Sección de Clientes */
.clients-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232962BF' fill-opacity='0.03'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.client-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    overflow: visible;
}

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

.client-logo {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-item:hover .client-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .client-item {
        padding: 1.5rem;
        min-height: 120px;
    }
} 