/* Optimizaciones para Font Awesome */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* Variables de colores optimizadas */
:root {
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    --google-purple: #9c27b0;
    --google-deep-purple: #673ab7;
    --google-orange: #ff9800;
    --google-teal: #009688;
    --google-cyan: #00bcd4;
    --google-light-green: #8bc34a;
    --google-light-blue: #03a9f4;
    --google-deep-orange: #ff5722;
    --google-pink: #e91e63;
    --google-indigo: #3f51b5;
    --google-lime: #cddc39;
    --google-amber: #ffc107;
    --google-brown: #795548;
    --google-grey: #9e9e9e;
    --google-blue-grey: #607d8b;
    
    /* Variables de tema */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Tema oscuro */
[data-theme="dark"] {
    --bg-primary: #1f2937;
    --bg-secondary: #111827;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #6b7280;
    --border-color: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}



/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navegación */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--google-blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Info Bar */
.info-bar {
    background: var(--google-deep-purple);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--google-yellow);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--google-yellow);
    color: var(--google-deep-purple);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 50% 50%, var(--google-blue), var(--google-indigo), var(--google-purple), var(--google-blue));
    background-size: 400% 400%;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    animation: radial-gradient-move 8s ease-in-out infinite;
}

@keyframes radial-gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero compacto para páginas internas */
.hero-compact {
    background: radial-gradient(circle at 50% 50%, var(--google-green), var(--google-teal), var(--google-cyan), var(--google-green));
    background-size: 400% 400%;
    padding: 2rem 0 1.5rem;
    animation: radial-gradient-move 6s ease-in-out infinite;
}

.hero-compact h1 {
    font-size: 0.8rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.link-title {
    font-size:3rem;
    opacity: 0.9;
    font-weight: 600;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--google-green);
    color: white;
}

.btn-primary:hover {
    background: var(--google-light-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--google-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Secciones */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--google-deep-purple);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navegación Rápida de Servicios */
.services-nav {
    padding: 80px 0;
}

.services-nav h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--google-deep-purple);
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    padding: 2rem 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s;
    text-align: center;
}

.service-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    color: var(--google-blue);
}

.service-nav-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.service-nav-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.service-nav-icon i {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-nav-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Colores específicos para cada servicio en navegación */
.service-nav-item[href="#diseno-web"] .service-nav-icon i {
    color: var(--google-blue);
}

.service-nav-item[href="#diseno-web"] .service-nav-icon::before {
    background: linear-gradient(135deg, var(--google-blue), var(--google-cyan));
}

.service-nav-item[href="#seo"] .service-nav-icon i {
    color: var(--google-red);
}

.service-nav-item[href="#seo"] .service-nav-icon::before {
    background: linear-gradient(135deg, var(--google-red), var(--google-deep-orange));
}

.service-nav-item[href="#redes-sociales"] .service-nav-icon i {
    color: var(--google-purple);
}

.service-nav-item[href="#redes-sociales"] .service-nav-icon::before {
    background: linear-gradient(135deg, var(--google-purple), var(--google-pink));
}

.service-nav-item[href="#google-ads"] .service-nav-icon i {
    color: var(--google-yellow);
}

.service-nav-item[href="#google-ads"] .service-nav-icon::before {
    background: linear-gradient(135deg, var(--google-yellow), var(--google-orange));
}

.service-nav-item[href="#saas"] .service-nav-icon i {
    color: var(--google-green);
}

.service-nav-item[href="#saas"] .service-nav-icon::before {
    background: linear-gradient(135deg, var(--google-green), var(--google-teal));
}

/* Servicios Individuales */
.service-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.service-section.alt {
    background: var(--bg-secondary);
}

.service-content {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 4rem;
    align-items: center;
}

/* Servicios con icono a la derecha */
#diseno-web .service-content,
#redes-sociales .service-content,
#saas .service-content {
    grid-template-columns: 70% 30%;
}

/* Servicios con icono a la izquierda */
#seo .service-content,
#google-ads .service-content {
    grid-template-columns: 30% 70%;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--google-deep-purple);
    text-align: left;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-icon {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.service-icon i {
    font-size: 6rem;
    color: var(--google-blue);
    position: relative;
    z-index: 2;
}

/* Bloque de Call to Action */
.cta-block {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2rem;
    margin: 1rem 0;
    justify-content: start;
    align-items: center;
}

.cta-item {
    color: var(--text-primary);
    text-align: left;
}

.cta-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--google-deep-purple);
    background: linear-gradient(90deg, var(--google-blue), var(--google-purple), var(--google-blue));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 3s ease-in-out infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link {
    color: var(--google-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--google-blue);
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-link:hover {
    background: var(--google-blue);
    color: white;
}

.cta-whatsapp {
    background: var(--bg-primary);
    color: var(--google-green);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--google-green);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.cta-whatsapp:hover {
    background: var(--google-green);
    color: white;
}

/* Colores específicos para cada servicio */
#diseno-web .service-icon i {
    color: var(--google-blue);
}

#diseno-web .service-icon::before {
    background: linear-gradient(135deg, var(--google-blue), var(--google-cyan));
}

#seo .service-icon i {
    color: var(--google-red);
}

#seo .service-icon::before {
    background: linear-gradient(135deg, var(--google-red), var(--google-deep-orange));
}

#redes-sociales .service-icon i {
    color: var(--google-purple);
}

#redes-sociales .service-icon::before {
    background: linear-gradient(135deg, var(--google-purple), var(--google-pink));
}

#google-ads .service-icon i {
    color: var(--google-yellow);
}

#google-ads .service-icon::before {
    background: linear-gradient(135deg, var(--google-yellow), var(--google-orange));
}

#saas .service-icon i {
    color: var(--google-green);
}

#saas .service-icon::before {
    background: linear-gradient(135deg, var(--google-green), var(--google-teal));
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
}

.service-price {
    background: var(--google-light-blue);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

.service-recommendation {
    background: var(--google-yellow);
    color: var(--google-deep-purple);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.why-choose-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.why-choose-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.why-choose-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
}

.footer-mission {
    text-align: center;
    margin: 1rem 0;
}

.footer-mission h4 {
    color: var(--google-blue);
    margin-bottom: 1rem;
}

.footer-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-benefits li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.container {
    margin: 0 8%;
}
.image-section img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.description-section{padding:2rem 0;}
/* Porque trabajar con SKynet */
.plans {
    background: linear-gradient(135deg, var(--google-blue), var(--google-indigo));
    color: white;
}

.plans h2 {
    color: white;
}

/* Estilos específicos para la sección de planes */
.plans-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.plans-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--google-deep-purple);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow-color);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    border-color: var(--google-orange);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.2);
}

.plan-card.featured::before {
    background: linear-gradient(90deg, var(--google-orange), var(--google-deep-orange));
    opacity: 1;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--google-blue);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--google-blue), var(--google-purple));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 3s ease-in-out infinite;
}

.plan-price .desde {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    background: none;
    animation: none;
    display: block;
    margin-bottom: 0.25rem;
}

.plan-price .cotizar {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--google-orange), var(--google-deep-orange), var(--google-orange));
    background-size: 200% 100%;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    animation: gradient-move 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-features {
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.plan-features h4:first-child {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.3;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-cta {
    margin-top: auto;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.plan-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 168, 83, 0.3);
}

/* Responsive para planes */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        grid-column: span 1;
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .plan-header h3 {
        font-size: 1.6rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
}

.methodology-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.methodology-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.methodology-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: var(--google-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--google-deep-purple);
    font-size: 2rem;
}

.methodology-text h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.methodology-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.methodology-text p:last-child {
    margin-bottom: 0;
}

/* Servicios Adicionales */
.additional-services {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 1.5rem;
    border-left: 4px solid var(--google-purple);
    background: var(--bg-secondary);
    border-radius: 8px;
}

.service-item:nth-child(1) {
    border-left-color: var(--google-red);
}

.service-item:nth-child(2) {
    border-left-color: var(--google-yellow);
}

.service-item:nth-child(3) {
    border-left-color: var(--google-teal);
}

.service-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-item small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contacto */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item:nth-child(1) i {
    color: var(--google-red);
}

.contact-item:nth-child(2) i {
    color: var(--google-blue);
}

.contact-item:nth-child(3) i {
    color: var(--google-green);
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--google-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-cta p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-logo h3 {
    color: var(--google-blue);
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-links h4 {
    color: var(--google-blue);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--google-blue);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--google-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .info-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-content {
        gap: 1rem;
        justify-content: center;
    }

    .info-item {
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methodology-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .service-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .service-icon {
        width: 120px;
        height: 120px;
    }

    .service-info h2 {
        font-size: 2rem;
        text-align: center;
    }

    .service-icon {
        width: 150px;
        height: 150px;
    }
    
    .service-icon i {
        font-size: 4rem;
    }
    
    .cta-block {
        grid-template-columns: auto;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .cta-item {
        padding: 0.5rem;
    }
    
    .cta-price {
        font-size: 1.1rem;
    }
    
    .cta-link,
    .cta-whatsapp {
        min-width: 180px;
        justify-content: center;
    }
    
    .services-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .service-nav-item {
        padding: 1.5rem 0.5rem;
    }
    
    .service-nav-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-nav-icon i {
        font-size: 2rem;
    }
    
    .service-nav-item h3 {
        font-size: 1rem;
    }
}



/* FAQ Tabs */
.faq-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--google-yellow);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--google-yellow);
    color: var(--google-deep-purple);
    border-color: var(--google-yellow);
    box-shadow: 0 4px 15px rgba(251, 188, 4, 0.4);
}

.tab-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tab-pane p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para FAQ Tabs */
@media (max-width: 768px) {
    .tab-buttons {
        gap: 0.25rem;
    }
    
    .tab-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 2rem;
        min-height: 300px;
    }
    
    .tab-pane h3 {
        font-size: 1.3rem;
    }
    
    .tab-pane p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        gap: 0.2rem;
    }
    
    .tab-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

/* Estilos para la sección de páginas especializadas */
.specialized-pages {
    background: var(--bg-secondary);
    padding: 60px 0;
    margin-top: 40px;
}

.specialized-pages h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

.specialized-pages p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para la marquesina */
.marquee-container {
    width: 95%;
    max-width: none;
    overflow: hidden;
    position: relative;
    margin: 30px auto 0;
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 20px 0;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.marquee-content {
    display: flex;
    gap: 15px;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.page-link {
    background: var(--bg-primary);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-color);
    flex: 0 0 auto;
}

.page-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.page-link a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    gap: 10px;
}

.page-link a:hover {
    color: var(--google-blue);
}

.page-link i {
    font-size: 1.2rem;
    color: var(--google-blue);
    transition: all 0.3s ease;
}

.page-link:hover i {
    transform: scale(1.05);
}

.page-link span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Colores específicos para cada tipo de página */
.page-link[href*="hoteles"] i {
    color: var(--google-blue);
}

.page-link[href*="restaurantes"] i {
    color: var(--google-orange);
}

.page-link[href*="clinicas"] i {
    color: var(--google-green);
}

.page-link[href*="barberias"] i {
    color: var(--google-brown);
}

.page-link[href*="odontologos"] i {
    color: var(--google-cyan);
}

.page-link[href*="ginecologos"] i {
    color: var(--google-pink);
}

.page-link[href*="optalmologos"] i {
    color: var(--google-purple);
}

.page-link[href*="abogados"] i {
    color: var(--google-indigo);
}

/* Responsive para páginas especializadas */
@media (max-width: 768px) {
    .specialized-pages {
        padding: 50px 0;
        margin-top: 30px;
    }
    
    .specialized-pages h2 {
        font-size: 1.8rem;
    }
    
    .marquee-container {
        width: 98%;
        padding: 15px 0;
        border-radius: 10px;
    }
    
    .marquee-content {
        gap: 12px;
        animation-duration: 40s;
    }
    
    .pages-grid {
        gap: 12px;
    }
    
    .page-link {
        padding: 12px 15px;
    }
    
    .page-link i {
        font-size: 1.1rem;
    }
    
    .page-link span {
        font-size: 1.1rem;
    }
}