/* ========================================
   BOGUZ GLOBAL LLC - AJUSTES VISUALES CSS V2
   Archivo de correcciones para WordPress
   CON CÍRCULOS DE GRADIENTE PARA ÍCONOS
   ======================================== */

/* 1. CÍRCULOS CON GRADIENTE PARA ÍCONOS DE SERVICIOS */
/* Estilo idéntico al sitio React original */
.service-icon-circle,
.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.service-icon-circle i,
.icon-circle i,
.service-icon-circle .fas,
.icon-circle .fas {
    font-size: 2rem !important; /* 32px - tamaño exacto del React */
    color: white !important;
}

/* 2. AJUSTES DE ICONOS GENERALES */
.fas, .far, .fab {
    font-size: 1.5rem !important;
}

/* Iconos en tarjetas de servicios - REDUCIR TAMAÑO */
.text-6xl .fas,
.text-6xl .far,
.text-6xl .fab {
    font-size: 2rem !important; /* Reducido de 3rem a 2rem */
}

/* Iconos pequeños en círculos de contacto */
.w-12.h-12 .fas,
.w-12.h-12 .far,
.w-12.h-12 .fab {
    font-size: 1.25rem !important;
}

/* 3. ICONOS CIRCULARES - Página Perfil de la Empresa */
.business-model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.business-model-icon i {
    color: white;
    font-size: 2rem !important;
}

/* 4. TARJETAS DE ESTADÍSTICAS */
.stats-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.stats-description {
    font-size: 0.95rem;
    color: #6B7280;
}

/* 5. CHECKMARKS - Estilo para listas */
.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

/* Checkmarks con ícono Font Awesome */
.check-icon-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.check-icon-circle i {
    font-size: 0.875rem !important;
    color: white !important;
}

/* 6. AJUSTES DE TIPOGRAFÍA */
h1 {
    font-size: 3rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2.25rem !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
}

p {
    line-height: 1.6 !important;
}

/* 7. ESPACIADO Y MÁRGENES */
.section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* 8. BOTONES */
.btn-gradient {
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* 9. HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    padding: 5rem 0;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem !important;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem !important;
    opacity: 0.95;
}

/* 10. TARJETAS DE SERVICIOS */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 11. FOOTER */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 3rem 0 1.5rem;
}

footer a {
    color: #00D4D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1E5BA8;
    text-decoration: underline;
}

/* 12. FORMULARIO DE CONTACTO */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #00D4D4;
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.1);
}

/* 13. RESPONSIVE - Ajustes para móvil */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .business-model-icon {
        width: 60px;
        height: 60px;
    }
    
    .business-model-icon i {
        font-size: 1.5rem !important;
    }
    
    .service-icon-circle,
    .icon-circle {
        width: 56px;
        height: 56px;
    }
    
    .service-icon-circle i,
    .icon-circle i {
        font-size: 1.75rem !important;
    }
}

/* 14. ANIMACIONES SUAVES */
* {
    transition: all 0.3s ease;
}

/* 15. COLORES CORPORATIVOS */
:root {
    --color-primary: #1E5BA8;
    --color-secondary: #00D4D4;
    --color-dark: #2C3E50;
    --color-gray: #6B7280;
    --color-light-gray: #F3F4F6;
}

/* 16. SOMBRAS CONSISTENTES */
.shadow-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-card-hover:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 17. GRADIENTES REUTILIZABLES */
.gradient-primary {
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 18. ÍCONOS EN NAVEGACIÓN */
nav .fas,
nav .far,
nav .fab {
    font-size: 1rem !important;
    margin-right: 0.5rem;
}

/* 19. AJUSTE PARA WORDPRESS ADMIN BAR */
body.admin-bar {
    padding-top: 32px;
}

/* 20. CONTENEDORES TAILWIND */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* 21. ACCESIBILIDAD */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #00D4D4;
    outline-offset: 2px;
}

/* 22. CÍRCULOS DE CONTACTO (MÁS PEQUEÑOS) */
.contact-icon-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1E5BA8 0%, #00D4D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle i {
    font-size: 1.25rem !important;
    color: white !important;
}

/* 23. AJUSTE ESPECÍFICO PARA EMOJIS DE ÍCONOS */
/* Reemplazar emojis con Font Awesome cuando sea posible */
.emoji-icon {
    display: none; /* Ocultar emojis si hay Font Awesome disponible */
}

/* 24. GRID DE SERVICIOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 25. HOVER EFFECTS CONSISTENTES */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FIN DE AJUSTES CSS V2 */
