/* Gmail Header Styles */

/* Main header container */
.gmail-header {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* Aseguramos que no haya problemas de posicionamiento y clics */
       /* position: relative;
    z-index: 100;
    /* Aseguramos que los eventos de puntero funcionen en todo el header */
    pointer-events: auto;
    /* Eliminamos cualquier elemento que pueda estar bloqueando los clics */
    overflow: visible;
    /* Aseguramos que todos los elementos dentro del header sean clicables */
    isolation: isolate;
}

/* Header content wrapper */
.gmail-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Aseguramos que no haya problemas de posicionamiento */
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Left column with text content */
.gmail-header-text {
    flex: 1;
    padding-right: 30px;
    text-align: left;
    /* Aseguramos que sea clicable */
    pointer-events: auto;
}

/* Gmail logo */
.gmail-logo {
    margin-bottom: 20px;
    max-width: 130px;
}

/* Main headline */
.gmail-header-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Subheadline */
.gmail-header-text p {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* CTA button */
.gmail-cta-button {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Aseguramos que el botón sea clicable */
    position: relative;
    z-index: 999;
    pointer-events: auto;
    cursor: pointer;
    /* Forzamos que el botón sea interactivo */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    font-family: Arial, sans-serif;
    text-align: center;
}

.gmail-cta-button:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* App Store Logos */
.app-store-logos {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    /* Aseguramos que los enlaces sean clicables */
    position: relative;
    z-index: 999;
    pointer-events: auto;
    /* Forzamos que los enlaces sean interactivos */
    isolation: isolate;
}

.app-store-link {
    display: inline-block;
    /* Aseguramos que los enlaces sean clicables */
    position: relative;
    z-index: 999;
    pointer-events: auto;
    cursor: pointer;
    /* Forzamos que los enlaces sean completamente interactivos */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    user-select: none;
}

.app-store-logo {
    max-height: 40px;
    width: auto;
}

/* Right column with image */
.gmail-header-image {
    flex: 1;
    text-align: center;
    /* Aseguramos que sea clicable */
    pointer-events: auto;
}

.gmail-header-image img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .gmail-header-content {
        flex-direction: column-reverse;
    }
    
    .gmail-header-text {
        padding-right: 0;
        text-align: center;
        margin-top: 30px;
    }
    
    .gmail-header-text p {
        max-width: 100%;
    }
    
    .gmail-logo {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .gmail-header-text h1 {
        font-size: 36px;
    }
    
    .gmail-header-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gmail-header-text h1 {
        font-size: 28px;
    }
    
    .gmail-header-text p {
        font-size: 15px;
    }
    
    .gmail-cta-button {
        width: 100%;
        text-align: center;
    }
}



/**
 * VPN Header Styles
 * Estilos adicionales para el encabezado de la página VPN
 */

/* Award badge */
.award-badge {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    max-width: fit-content;
    color: #ff3d71;
}

.star-icon {
    color: #ff3d71;
    margin-right: 5px;
    font-size: 18px;
}

.techradar-logo {
    height: 18px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Feature list with check marks */
.feature-list {
    margin-bottom: 25px;
}

.feature-list p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.check-icon {
    color: #0060fe;
    margin-right: 10px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Cybersecurity offer */
.cybersecurity-offer {
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    max-width: 400px;
    border: 1px solid #e6e6e6;
    font-family: Arial, sans-serif;
}

.offer-icon {
    width: 40px;
    height: 40px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.offer-icon i {
    color: #0060fe;
    font-size: 20px;
}

.offer-text {
    flex: 1;
}

.offer-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #333;
}

.offer-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
    font-weight: 600;
}

/* Money-back guarantee */
.money-back-guarantee {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-family: Arial, sans-serif;
}

.money-back-guarantee i {
    margin-right: 8px;
    color: #0060fe;
}

/* Responsive styles */
@media (max-width: 991px) {
    .cybersecurity-offer {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .award-badge {
        font-size: 14px;
    }
    
    .feature-list p {
        font-size: 16px;
    }
    
    .cybersecurity-offer {
        padding: 8px 15px;
    }
    
    .offer-icon {
        width: 35px;
        height: 35px;
    }
    
    .offer-text h4 {
        font-size: 14px;
    }
    
    .offer-text p {
        font-size: 12px;
    }
}