:root {
    --primary-color: #000000;
    --secondary-color: #d32f2f;
    --dark-color: #292929;
    --light-color: #f1f8e9;
    --accent-color: #9a9f59;
    --text-color: #263238;
    --light-green: #c8e6c9;
    --shadow-color: #9effab;
    --shadow-color-light: white;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: #f9f9f9;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

/* Navbar innovador con tonos verdes */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.text-primary2 { color: #304818; }

.btn-outline-verde {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

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

.bg-primary2 { background-color: #304818; }

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: var(--dark-color);
}

.dropdown-item {
    font-weight: 500;
    transition: all 0.2s;
    color: white;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
}

/* Hero Header con fondo verde */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(160, 160, 160, 0)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    position: relative;
}

.hero-header h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-header .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.typed-text {
    color: var(--accent-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: 'Archivo Black', sans-serif;
    color: var(--dark-color);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Feature Boxes con tonos verdes */
.feature-box {
    padding: 30px;
    border-radius: 5px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border-top: 3px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
 /* Servicios Cards */
 .service-card {
    padding: 30px;
    border-radius: 5px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border-top: 3px solid var(--primary-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}
/* Botones con tonos verdes */
.btn-custom {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -2;
}

.btn-custom:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--dark-color);
    transition: all 0.3s;
    z-index: -1;
}

.btn-custom:hover {
    color: #fff;
}

.btn-custom:hover:before {
    width: 100%;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

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

/* Efectos especiales */
.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: var(--accent-color);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}
  /* Tabs de descargas */
  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: var(--dark-color);
    border-radius: 5px 5px 0 0;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 14px;
    color: white;
    font-weight: 600;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab button:hover {
    background-color: var(--primary-color);
}

.tab button.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    background: white;
    border-radius: 0 0 5px 5px;
    animation: fadeIn 0.5s;
}

.tabcontent h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tabcontent iframe {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .tab button {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .tabcontent h2 {
        font-size: 1.2rem;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
/* Secciones con fondos verdes claros */
.bg-light-green {
    background-color: var(--light-green);
}

/* Footer verde oscuro */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

footer .logo-footer {
    height: 50px;
    margin-bottom: 20px;
}

footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ccc;
    transition: all 0.3s;
}

footer ul li a:hover {
    color: white;
    padding-left: 5px;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Animaciones */
.animate-up {
    animation: fadeInUp 1s both;
}

.animate-down {
    animation: fadeInDown 1s both;
}

.animate-left {
    animation: fadeInLeft 1s both;
}

.animate-right {
    animation: fadeInRight 1s both;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

       
/* Botón WhatsApp flotante */
.float-whatsapp {
    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;
    transition: all 0.3s;
}


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

.my-float {
    margin-top: 16px;
}

/* Lista con checks verdes */
.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.list-check li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Estilos del segundo código */
.Iam {
    font: normal 40px/50px Montserrat, sans-serif;
    color: #999;
}
.Iam p {
    height: 40px;
    float: left;
    margin-right: 0.1em;
}
.Iam j {
    float: left;
    overflow: hidden;
    position: relative;
    height: 50px;
    top: 10px;
}
.Iam .innerIam {
    display: inline-block;
    color: #e74c3c;
    position: relative;
    white-space: normal;
    top: 0;
    left: 0;
    animation: move 29s infinite;
    animation-delay: 4s;
}

@keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}

.texto-borde {
    -webkit-text-stroke: 2px rgb(0, 56, 23);
    color: transparent;
}

.logo-1 {
    color: white;
    animation: neon 3s infinite;
}

@keyframes neon {
    0% {
        text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
        0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
        0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
    }
    50% {
        text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
        0 0 5px var(--shadow-color-light), 0 0 15px var(--shadow-color-light), 0 0 25px var(--shadow-color-light),
        0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 60px var(--shadow-color), 0 0 80px var(--shadow-color), 0 0 110px var(--shadow-color), 0 0 210px var(--shadow-color);
    }
    100% {
        text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
        0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
        0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
    }
}

.separar {
    padding: 3%;  
    cursor: pointer;
}
.boton3 {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5em 1.2em;
    background: #318aac;
    border: 2px solid;
    border-color: #318aac;
    transition: all 1s ease;
    position: relative;
    margin-left: 10%;
    margin-right: auto;
    box-shadow: 5px 5px #ff0202;
}
.boton3:hover {
    background: #3189ac00;
    color: #2600ff !important;
}

/* Texto animado del footer */
.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 100%;
    stroke-width: 25px;
    stroke-dashoffset: 5%;
    animation: stroke-offset 3.5s infinite linear;
}

.text-copy:nth-child(1){
    stroke: #dde008;
    animation-delay: -1;
}

.text-copy:nth-child(2){
    stroke: #778400;
    animation-delay: -2s;
}

.text-copy:nth-child(3){
    stroke: #aabd00;
    animation-delay: -3s;
}

.text-copy:nth-child(4){
    stroke: #c9fc3e;
    animation-delay: -4s;
}

.text-copy:nth-child(5){
    stroke: #FDB731;
    animation-delay: -5s;
}

@keyframes stroke-offset{
    100% {stroke-dashoffset: -35%;}
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .Iam {
        font-size: 24px;
        line-height: 30px;
    }
}
 /* Estilos específicos para la página de clientes */
 .client-section {
    padding: 80px 0;
}

.client-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    overflow: hidden;
    background: white;
}

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

.client-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.client-info {
    padding: 20px;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
}

.experience-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.experience-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
 /* Estilos específicos para la página de empresa */
 .company-section {
    padding: 80px 0;
}

.company-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.company-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    border-radius: 50%;
}

.company-icon img {
    max-width: 50px;
    max-height: 50px;
}

.software-card {
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

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

.software-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.intro-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.intro-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
  /* Estilos específicos para la página de la ley */
  .law-section {
    padding: 80px 0;
}

.law-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
}

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

.law-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.law-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.law-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.law-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.law-article h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.law-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.law-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

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

/* Carousel */
.law-carousel {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.law-carousel .carousel-item img {
    width: 100%;
    height: auto;
}

.law-carousel .carousel-control-prev,
.law-carousel .carousel-control-next {
    width: 5%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
.list-check li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Estilos específicos para la propuesta */
.propuesta-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.propuesta-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.propuesta-highlight {
    background-color: rgba(154, 159, 89, 0.1);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
}

.propuesta-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.propuesta-item:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.propuesta-alert {
    background-color: rgba(238, 241, 28, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    margin: 20px 0;
    font-weight: 700;
    text-align: center;
}

.propuesta-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.propuesta-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Efecto de texto animado */

.texto-efecto {
    color: #030303;
    text-shadow: 0 20px 25px #2e2e31, 0 40px 60px #2e2e31;
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -3px;
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.texto-efecto:before,
.texto-efecto:after {
    content: '';
    padding: .2em .2em;
    position: absolute;
    left: 50%;
    width: 45%;
    top: 3.5%;
    display: block;
    border: 5px solid red;
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    animation: 10s infinite alternate ease-in-out tipsy;
}

.texto-efecto:before {
    border-color: #d9524a #d9524a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    z-index: 1;
}

.texto-efecto:after {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d9524a #d9524a;
    box-shadow: 25px 25px 25px rgba(46, 46, 49, .8);
}

/* Responsive */
@media (max-width: 768px) {
    .propuesta-title {
        font-size: 2rem;
    }
    
    .texto-efecto {
        font-size: 2rem;
    }
}
 /* Contacto específico */
 .contact-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
    padding: 30px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(154, 159, 89, 0.25);
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.1);
    border-left: 4px solid var(--whatsapp-color);
}

.whatsapp-icon {
    color: var(--whatsapp-color);
    font-size: 5rem;
    margin: 20px 0;
    transition: all 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: var(--whatsapp-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
}

.phone-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.phone-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.map-container {
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
 /* Software Cards */
 .software-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    height: 100%;
    border-top: 5px solid var(--accent-color);
}

.software-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.software-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.software-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.software-feature {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.software-feature:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.software-highlight {
    background-color: rgba(154, 159, 89, 0.1);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: sticky;
    top: 20px;
}

.nav-pills .nav-link {
    color: var(--primary-color);
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 12px 20px;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: rgba(154, 159, 89, 0.1);
}
  /* Responsive */
        @media (max-width: 768px) {
            .hero-header h1 {
                font-size: 2.5rem;
            }
            
            .hero-header .lead {
                font-size: 1.2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
 /* Estilos específicos para la página de la ley */
 .law-section {
    padding: 80px 0;
}

.law-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
}

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

.law-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.law-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.law-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.law-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.law-article h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.law-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.law-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

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

/* Carousel */
.law-carousel {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.law-carousel .carousel-item img {
    width: 100%;
    height: auto;
}

.law-carousel .carousel-control-prev,
.law-carousel .carousel-control-next {
    width: 5%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}        