        :root {
            --primary-color: #000000;
            --secondary-color: #ffffff;
            --accent-color: #2c3e50;
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --border-color: #e0e0e0;
            --shadow-color: rgba(0, 0, 0, 0.1);
            --card-bg: #f8f9fa;
        }
        html, body {
overflow-x: hidden;
}
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-primary);
            overflow-x: hidden;
            box-sizing: border-box;
            margin: 0;padding: 0;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        a{
    text-decoration: none;
        }
        img{
            width: 100%;
        }
        /* Navbar */
        .navbar {
            background-color: var(--secondary-color);
            box-shadow: 0 2px 10px var(--shadow-color);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand div {
            font-size: 0.7rem; font-weight: 400; letter-spacing: 1px;
        }
        .navbar-brand span {
            font-weight: 300;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-primary) !important;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .navbar-nav a:hover{
    border-bottom: 2px solid var(--primary-color);
        }

        .language-switcher{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-cta2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-family: sans-serif;
  z-index: 999;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;

  animation: pulse 2.5s infinite;
  overflow: hidden;
}

/* 🔥 Hover elegante */
.whatsapp-cta2:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* ✨ Texto oculto al inicio */
.whatsapp-cta2__text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s ease;
}

/* ✨ En hover aparece "WhatsApp" bonito */
.whatsapp-cta2:hover .whatsapp-cta2__text {
  max-width: 150px;
  opacity: 1;
}

/* 🔹 Icono */
.whatsapp-cta2__icon {
  font-size: 20px;
}

/* 🔴 Puntico rojo tipo notificación */
.whatsapp-cta2__badge {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255,0,0,0.7);
  animation: blink 1.5s infinite;
}

/* Animación del puntico */
@keyframes blink {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255,0,0,0.7);
  }
  70% {
    transform: scale(1.3);
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(255,0,0,0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animación general suave */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}




.idiomas{
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-weight: bold;
    border: 2px solid #ffff;
    width: 50px;
    height: 30px;
}

.btn-espanol{
    background-image: url('img/bandera-RD.webp');
 
}

.btn-english{
    background-image: url('img/bandera-USA.webp');
}

.btn-espanol:active{
    border: 2px solid #398ef0b0!important;
}
.btn-english:active{
    border: 2px solid #c51414b0!important;

}

.tooltip-inner{
background-color: white;
color: black;
font-size: 12px;
padding: 4px 8px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.tooltip.bs-tooltip-left .tooltip-arrow::before{
border-left-color: white;
}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(255, 255, 255, 0.664), rgba(255, 255, 255, 0.836)), 
                        url('img/img-hader.webp');
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(255,255,255,0.03) 100%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
        }
        .equipo-02{
            margin-top: 20px;
            max-height: 730px;
        }
        /* Cards */
        .service-card, .team-card, .testimonial-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: var(--secondary-color);
            height: 100%;
        }
        
        .service-card:hover, .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow-color) !important;
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Sections */
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .section-padding {
            padding: 5rem 0;
            margin-top: 20px;
        }
        
        .social-links{
            padding: 10px;
            width: 180px;
            display: flex;
            gap: 20px;
            border-radius: 0 0 0 20px;
        }

        .social-links{
    display: flex;
    gap: 12px;
}

.social-links i{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Colores de cada red */
.bi-facebook{
    background: #1877f2;
}

.bi-instagram{
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.bi-linkedin{
    background: #0077b5;
}

.bi-whatsapp{
    background: #25d366;
}

/* Hover animado */
.social-links i:hover{
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
        /* Team Section */
        .team-img {
            height: 60%;
            text-align: center;
            object-fit: cover;
            object-position: top;
        }

        /* Contact Form */
        .contact-form .form-control {
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 0.75rem 1rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 3rem 0 1.5rem;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        /* Button Styles */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }
        
        .img-abogados{
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 5px;
    height: 70%;
        }

        .abogado-trato{
max-height: 600px!important;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
        .hero-section {
            margin-top: 105px;

        }
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 3rem 0;
            }
        }