/* Estilos generales */
:root {
    --primary-color: #141033;
    --secondary-color: #1a1540;
    --accent-color: #ff6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero section */
.hero {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.15);
}

.card-img-bottom {
    height: 200px;
    object-fit: cover;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.price-tag {
    margin-top: 15px;
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hosting-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hosting-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.15);
}

/* Featured Card */
.featured-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.featured-features {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-tag {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Navbar */
.navbar {
    padding: 0.5rem 0;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.navbar.bg-primary {
    background-color: var(--primary-color) !important;
}

header.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary.text-white {
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 100px;
    margin-right: 20px;
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1.2rem;
    }

    .navbar-brand img {
        height: 60px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }

    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
}

/* Footer */
footer {
    margin-top: 3rem;
}

/* Botones */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}

/* Featured Section */
.featured-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 4rem 0;
}

.featured-content {
    position: relative;
    padding: 2rem;
}

.featured-label {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-list {
    margin: 2rem 0;
}

.featured-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.featured-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.featured-image {
    transition: transform 0.3s ease;
}

.featured-image:hover {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
}

.featured-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 0 1rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Imagen de reservas */
.reservas-image {
    max-width: 40%;
    margin: 0 auto;
    display: block;
}

/* Separación entre servicios */
.row.mb-5 {
    position: relative;
    padding-bottom: 3rem;
}

.row.mb-5:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13, 110, 253, 0.2), transparent);
}

/* Ajuste para la sección destacada */
.featured-section::after {
    background: linear-gradient(to right, transparent, rgba(255, 107, 107, 0.2), transparent);
}

/* Estilos para la página Nosotros */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
}

.bg-gradient-primary h1,
.bg-gradient-primary h2,
.bg-gradient-primary h3,
.bg-gradient-primary h4,
.bg-gradient-primary h5,
.bg-gradient-primary h6,
.bg-gradient-primary p,
.bg-gradient-primary .lead {
    color: white !important;
}

/* Asegurar que la sección hero tenga el fondo correcto */
section.bg-gradient-primary {
    background: linear-gradient(135deg, #141033 0%, #1a1540 100%) !important;
    color: white !important;
    min-height: 400px;
}

section.bg-gradient-primary * {
    color: white !important;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.industry-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Responsive para página nosotros */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .industry-icon,
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Botón de Instagram con colores oficiales */
a.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

a.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4) !important;
    text-decoration: none !important;
}

a.instagram-btn:focus {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(188, 24, 136, 0.25) !important;
    text-decoration: none !important;
}

a.instagram-btn:visited {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #999;
}

.whatsapp-float i {
    font-size: 30px;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        font-size: 25px;
    }
} 