/* DataCaribe - Estilos Ultra Modernos */
/* Paleta de colores: #00274d (azul), #ff7212 (naranja), #e25b00 (naranja oscuro) */

/* Importar fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Variables CSS para colores */
:root {
    --primary-blue: #00274d;
    --accent-orange: #ff7212;
    --dark-orange: #e25b00;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00274d 0%, #003d6b 50%, #004d7a 100%);
    --gradient-accent: linear-gradient(135deg, #ff7212 0%, #e25b00 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 39, 77, 0.9) 0%, rgba(255, 114, 18, 0.8) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 39, 77, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 39, 77, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 39, 77, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 800;
    line-height: 1.1;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3.2rem); 
    font-weight: 700;
    line-height: 1.15;
}
h3 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 600;
    line-height: 1.15;
}
h4 { 
    font-size: clamp(1.5rem, 3vw, 2.2rem); 
    font-weight: 600;
    line-height: 1.2;
}
h5 { 
    font-size: clamp(1.25rem, 2.5vw, 1.8rem); 
    font-weight: 500;
    line-height: 1.25;
}
h6 { 
    font-size: clamp(1.1rem, 2vw, 1.5rem); 
    font-weight: 500;
    line-height: 1.3;
}

/* Navegación Ultra Moderna */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 39, 77, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-blue) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

/* Dropdown Menu Estilo */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 39, 77, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0.5rem !important;
    min-width: 200px;
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--primary-blue) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
}

.dropdown-item:hover {
    background: rgba(255, 114, 18, 0.1) !important;
    color: var(--accent-orange) !important;
    transform: translateX(5px);
}

.dropdown-item:active {
    background: rgba(255, 114, 18, 0.2) !important;
    color: var(--accent-orange) !important;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Botones Ultra Modernos */
.btn {
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    color: var(--white);
    border: 2px solid var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Hero Section Simple y Centrado */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(0, 39, 77, 0.9) 0%, rgba(0, 61, 107, 0.8) 100%), url('../images/hero/business-people-having-meeting-and-brainstorming-d-2024-07-09-00-51-55-utc-min.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}


.hero .lead {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .btn-accent {
    background: var(--accent-orange);
    border: none;
    color: var(--white);
}

.hero .btn-accent:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 114, 18, 0.4);
}

.hero .btn-outline-light {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.hero .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}


.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-align: center;
    max-width: 100%;
}


.hero-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Responsive para Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Dropdown responsive */
    .dropdown-menu {
        margin-top: 0.25rem !important;
        border-radius: 8px !important;
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem !important;
        margin: 0.125rem 0.25rem;
        font-size: 0.9rem;
    }
}

/* Secciones con Imágenes de Fondo */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.section-bg .container {
    position: relative;
    z-index: 2;
}

.section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title .lead {
    color: var(--medium-gray);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Cards Ultra Modernas */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-header {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 20px 20px 0 0 !important;
    padding: 2rem;
    text-align: center;
}

.card-body {
    padding: 2.5rem;
}

.card-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: var(--white);
}

/* Iconos Modernos */
.icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.icon-lg {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
}

/* Grid de Servicios Moderno */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
}

.service-card .icon {
    margin: 0 auto 2rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* Timeline Moderno */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    top: 1.5rem;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--accent-orange);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline .card {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Footer Ultra Moderno */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero/new-business-people-in-the-conference-room-are-exc-2025-01-07-23-10-18-utc-min.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animaciones Ultra Modernas */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Image Overlay Moderno */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 39, 77, 0.8), rgba(255, 114, 18, 0.6));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.image-overlay:hover::before {
    opacity: 1;
}

.image-overlay:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.image-overlay img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.image-overlay:hover img {
    transform: scale(1.1);
}

/* Responsive Ultra Moderno */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-item::before {
        left: 1rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Utilidades Modernas */
.text-primary { color: var(--primary-blue) !important; }
.text-accent { color: var(--accent-orange) !important; }
.bg-primary { background: var(--gradient-primary) !important; }
.bg-accent { background: var(--gradient-accent) !important; }
.bg-light-alt { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important; }

/* Spacing personalizado */
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-8 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

/* Efectos de Partículas (opcional) */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Service Cards Modernas */
.service-card-modern {
    border-radius: 25px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-medium);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.service-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-card-modern .icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.service-card-modern h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-card-modern ul {
    margin-bottom: 2rem;
}

.service-card-modern li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-card-modern .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card-modern .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}



/* Efectos de Hover Mejorados */
.service-card-modern:hover .icon {
    transform: translateY(-5px) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Animaciones de Entrada Mejoradas */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efectos de Partículas Mejorados */
.particle {
    position: absolute;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* Responsive para Service Cards Modernas */
@media (max-width: 768px) {
    .service-card-modern {
        min-height: 300px;
        padding: 2rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.5rem;
    }
    
    .service-card-modern p {
        font-size: 1rem;
    }
    
}

/* Estilos para Secciones de Servicios Mejoradas */
.service-features {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-orange);
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 39, 77, 0.1);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.feature-card h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 114, 18, 0.1), rgba(226, 91, 0, 0.05));
    border: 1px solid rgba(255, 114, 18, 0.2);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.highlight-box p {
    color: var(--primary-blue);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Nuevo layout para imágenes más impactantes */
.service-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

/* Overlay sutil para mejor legibilidad */
.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 39, 77, 0.1), rgba(0, 39, 77, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image-container:hover .service-image-overlay {
    opacity: 1;
}

/* Layout alternativo para mejor distribución */
.service-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    flex: 1;
    margin-bottom: 0;
}

.highlight-box {
    margin-top: auto;
}

.service-benefits {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 39, 77, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 39, 77, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: var(--accent-orange);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.benefit-item h6 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
    .service-features {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 0.75rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
}