/* Estilos específicos para página Presencia Internacional */
.logo img {
    height: 50px; /* Tamaño reducido del logo */
    width: auto; /* Mantiene la proporción */
    margin-right: 10px; /* Espacio entre el logo y el texto */
}

.presencia-main {
    margin-top: 80px;
}

.presencia-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 180, 216, 0.3)),
                url('../../img/presenciaI/presenciaI.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.presencia-hero .hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

.presencia-hero .hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    animation: fadeIn 1.5s ease-in;
}

.presencia-content {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-section h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.intro-section .lead {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.regiones-section h3 {
    color: #003366;
    font-size: 2rem;
    margin: 3rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cloud-providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.provider-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.provider-header img {
    height: 40px;
    width: auto;
}

.provider-header h4 {
    color: #003366;
    margin: 0;
    font-size: 1.3rem;
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-list li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.region-list li:before {
    content: "•";
    color: #00b4d8;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.region-list strong {
    color: #003366;
}

.benefits-section {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    border-radius: 15px;
    color: white;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-section .highlight {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #003366;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #f0f0f0;
    gap: 15px;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .presencia-hero {
        height: 50vh;
    }
    
    .presencia-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .presencia-hero .hero-content p {
        font-size: 1.3rem;
    }
    
    .intro-section h2 {
        font-size: 2rem;
    }
    
    .regiones-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}