/* ============================================
   PÁGINA DE HOSTING - ESTILOS ESPECÍFICOS
   ============================================ */

/* Estilos Globales de Secciones */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 3rem;
}

/* Hero Section - Hosting */
.hosting-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 3rem;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 60%);
    position: relative;
    z-index: 10;
}

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

.hosting-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hosting-hero-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Hosting Services Section */
.hosting-services-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.3) 50%, transparent 100%);
}

.hosting-services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.hosting-service-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hosting-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.3);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Card especial de WhatsApp con icono naranja */
.whatsapp-card .whatsapp-icon {
    background: linear-gradient(135deg, #e29117 0%, #ff9800 100%);
}

.whatsapp-card .whatsapp-icon i {
    color: #ffffff;
}

/* Tarifas Section */
.tarifas-section {
    padding: 0rem 2rem;
    background: radial-gradient(ellipse at center, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
}

.tarifas-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tarifas-content {
    padding: 0;
}

.tarifas-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.tarifas-title i {
    color: #e29117;
    font-size: 1.85rem;
}

.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tarifa-item {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tarifa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e29117 0%, #3D073B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tarifa-item:hover::before {
    opacity: 1;
}

.tarifa-item:hover {
    border-color: rgba(241, 7, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tarifa-highlight {
    border: 2px solid rgba(226, 145, 23, 0.5);
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.2);
}

.tarifa-highlight::before {
    opacity: 1;
}

.tarifa-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.tarifa-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarifa-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e29117;
    margin-bottom: 0.35rem;
    line-height: 1;
}

.tarifa-note {
    font-size: 0.7rem;
    color: #888888;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tarifa-description {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Hosting Image */
.hosting-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    max-width: 800px;
    margin: 2.5rem auto 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.hosting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.image-overlay i {
    font-size: 2.5rem;
    color: #e29117;
    margin-bottom: 0.75rem;
}

.image-overlay p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Por qué Elegir Nuestro Hosting Section */
.why-hosting-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.4) 50%, transparent 100%);
}

.why-hosting-container {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

/* Items normales - icono a la izquierda */
.benefit-item:not(.benefit-reverse) {
    flex-direction: row;
}

.benefit-item:not(.benefit-reverse) .benefit-content {
    text-align: left;
}

/* Items reverse - icono a la derecha */
.benefit-reverse {
    flex-direction: row-reverse;
}

.benefit-reverse .benefit-content {
    text-align: right;
}

.benefit-icon-large {
    min-width: 110px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(226, 145, 23, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.benefit-item:hover .benefit-icon-large {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.benefit-content {
    flex: 1;
    padding: 0;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 1.05rem;
    color: #c0c0c0;
    line-height: 1.8;
}

/* Cómo Funciona Section */
.how-it-works-section {
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, rgba(30, 124, 147, 0.15) 0%, transparent 70%);
}

.how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(226, 145, 23, 0.4);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Comparativa Section */
.comparison-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.3) 50%, transparent 100%);
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-table {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.2) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.5) 0%, rgba(20, 20, 20, 0.7) 100%);
    border-bottom: 2px solid rgba(226, 145, 23, 0.3);
}

.header-item {
    padding: 1.5rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-item.highlight {
    background: linear-gradient(135deg, rgba(226, 145, 23, 0.2) 0%, rgba(61, 7, 59, 0.3) 100%);
}

.header-item i {
    font-size: 1.25rem;
    color: #e29117;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(226, 145, 23, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-label {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.row-label i {
    color: #e29117;
    font-size: 1.1rem;
}

.row-value {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.row-value.success {
    color: #4caf50;
}

.row-value.warning {
    color: #ff9800;
}

.row-value i {
    font-size: 1.1rem;
}

/* FAQ Hosting Section */
.faq-hosting-section {
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
}

.faq-hosting-container {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA al final del FAQ */
.faq-cta {
    text-align: center;
    padding: 2.5rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(226, 145, 23, 0.3);
    border-radius: 16px;
}

.faq-cta p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-faq {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.3);
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-faq i {
    font-size: 1.25rem;
}

/* Responsive - Hosting Page */
@media (max-width: 1400px) {
    
    .hosting-hero {
        height: 100vh;
        padding: 4rem 1.5rem 2.5rem;
    }
    
    .hosting-hero-title {
        font-size: 2.5rem;
    }
    
    .hosting-hero-description {
        font-size: 1rem;
    }
    
    .hosting-services-container {
        max-width: 80%;
    }
    
    .hosting-service-card {
        padding: 1.75rem 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .tarifas-section {
        padding: 1rem 2rem;
    }
    
    .tarifas-container {
        max-width: 80%;
    }
    
    .tarifas-title {
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }
    
    .tarifas-grid {
        gap: 0.875rem;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 2rem;
    }
    
    .tarifa-item {
        padding: 1.1rem 0.875rem;
    }
    
    .tarifa-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    
    .tarifa-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .tarifa-price {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }
    
    .tarifa-note {
        font-size: 0.65rem;
    }
    
    .tarifa-description {
        font-size: 0.75rem;
    }
    
    .hosting-image {
        height: 280px;
        max-width: 700px;
        margin: 2rem auto 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .why-hosting-section,
    .how-it-works-section,
    .comparison-section,
    .faq-hosting-section {
        padding: 4rem 2rem;
    }

    .why-hosting-container,
    .how-it-works-container,
    .comparison-container,
    .faq-hosting-container {
        max-width: 80%;
    }

    .benefits-list {
        gap: 3rem;
    }

    .benefit-item {
        gap: 2.5rem;
    }

    .benefit-icon-large {
        min-width: 90px;
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }

    .benefit-content h3 {
        font-size: 1.35rem;
    }

    .benefit-content p {
        font-size: 1rem;
    }

    .steps-timeline {
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .step-content h3 {
        font-size: 1.15rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .comparison-header {
        font-size: 0.95rem;
    }

    .header-item {
        padding: 1.25rem 0.75rem;
        font-size: 0.95rem;
    }

    .row-label {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .row-value {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .faq-hosting-section {
        padding: 4rem 2rem;
    }

    .faq-cta {
        padding: 2rem;
    }

    .faq-cta p {
        font-size: 1.15rem;
    }

    .btn-faq {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .hosting-hero-title {
        font-size: 1.85rem;
    }
    
    .hosting-hero-description {
        font-size: 0.95rem;
    }
    
    .hosting-services-section {
        padding: 3rem 1rem;
    }
    
    .hosting-services-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .hosting-service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .tarifas-section {
        padding: 3rem 1rem;
    }
    
    .tarifas-container {
        max-width: 100%;
    }
    
    .tarifas-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .tarifas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .tarifa-item {
        padding: 1.25rem 1rem;
    }
    
    .tarifa-icon {
        width: 32px;
        height: 32px;
    }
    
    .tarifa-item h3 {
        font-size: 0.825rem;
    }
    
    .tarifa-price {
        font-size: 1.4rem;
    }
    
    .hosting-image {
        height: 240px;
        max-width: 100%;
        margin: 1.75rem auto 0;
    }
    
    .image-overlay {
        padding: 1.25rem;
    }
    
    .image-overlay i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .why-hosting-section,
    .how-it-works-section,
    .comparison-section,
    .faq-hosting-section {
        padding: 3rem 1rem;
    }

    .why-hosting-container,
    .how-it-works-container,
    .comparison-container,
    .faq-hosting-container {
        max-width: 100%;
    }

    .benefits-list {
        gap: 2.5rem;
    }

    .benefit-item,
    .benefit-reverse {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .benefit-item:not(.benefit-reverse) .benefit-content,
    .benefit-reverse .benefit-content {
        text-align: center;
    }

    .benefit-icon-large {
        min-width: 85px;
        width: 85px;
        height: 85px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .benefit-content h3 {
        font-size: 1.25rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .header-item {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .header-item i {
        font-size: 1rem;
    }

    .row-label {
        padding: 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .row-label i {
        font-size: 0.9rem;
    }

    .row-value {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.35rem;
    }

    .row-value i {
        font-size: 1rem;
    }

    .faq-hosting-section {
        padding: 3rem 1rem;
    }

    .faq-cta {
        padding: 1.75rem 1rem;
    }

    .faq-cta p {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }

    .btn-faq {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   FIX ESPECÍFICO PARA iOS SAFARI
   ============================================ */

@supports (-webkit-touch-callout: none) {
    .hosting-hero,
    .hosting-services-section,
    .tarifas-section,
    .why-hosting-section,
    .how-it-works-section,
    .comparison-section,
    .faq-hosting-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

