/* Variables de color */
:root {
    --orange: #f97316;
    --orange-light: #fb923c;
    --orange-dark: #ea580c;
    --dark: #1e293b;
    --light: #f8fafc;
}

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0;
}

/* Barra superior */
.top-bar {
    font-size: 0.9rem;
}

.top-bar .social-icons a {
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: var(--orange);
}

/* Barra de navegación */
.navbar {
    transition: all 0.3s;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo centrado */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    z-index: 1000;
}

.logo-img {
    height: 180px;
    width: auto;
    transition: all 0.3s;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

/* Botones */
.btn-orange {
    background-color: var(--orange);
    color: white;
    border-color: var(--orange);
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
}

.btn-outline-orange {
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
}

/* Gradiente naranja */
.bg-gradient-orange {
    background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(220,38,38,0.1) 100%);
}

/* Secciones */
section {
    padding: 4rem 0;
}

/* Divider */
.divider {
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    margin: 1rem auto;
}

/* Tarjetas de servicio */
.service-card {
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 2rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--orange);
    color: white;
}

/* Tarjetas de precios */
.pricing-card {
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

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

.pricing-card-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Tarjetas de coworkers */
.coworker-card {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coworker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Iconos de contacto */
.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Alertas */
.alert-orange {
    background-color: rgba(249,115,22,0.1);
    border-left: 4px solid var(--orange);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .logo-img {
        height: 180px;
    }
    
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.map-container {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tabs .nav-link.active {
  color: white;
  background-color: var(--orange);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-link {
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: black;
}