/*******************************/
/******* CSS Variables **********/
/*******************************/
:root {
    --section-pad: 72px;
    --section-pad-sm: 48px;
    --header-height: 74px;
    --color-dark: #111111;
    --color-light: #f8f8f8;
    --color-border: #e5e5e5;
    --color-text: #333333;
    --color-muted: #777777;
    --transition: 0.3s ease;
}

/*******************************/
/********* General CSS *********/
/*******************************/
html {
    overflow-anchor: none;
}

body {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000; /* Encabezados negros */
}

a {
    color: #000000; /* Enlaces negros */
    transition: .3s;
}

a:hover, a:active, a:focus {
    color: #666666; /* Enlace al pasar el cursor */
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #000000;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #000000;
    background: #ffffff;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: .3s;
    display: inline-block;
    border: none;
}

/* Responsive Typography */
h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { font-size: clamp(0.9rem, 2vw, 1.1rem); }


/* Fade in elements when they come into view */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Section entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Responsive Spacing */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/**********************************/
/******* Site Header CSS **********/
/**********************************/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #111111;
    transition: box-shadow 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: box-shadow;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.wrapper {
    padding-top: var(--header-height);
}

.site-header .navbar {
    padding: 14px 60px;
    background: transparent !important;
}

.site-header .navbar-brand {
    padding: 0;
    margin-right: 32px;
}

.site-header .navbar-brand img {
    display: block;
    height: 46px;
    max-width: 150px;
    object-fit: contain;
}

.site-header .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header .navbar-nav .nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 14px !important;
    transition: color 0.2s;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.07);
}

.site-header .navbar-nav .dropdown {
    position: relative;
}
@media (min-width: 992px) {
    .site-header .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .site-header .navbar-nav .dropdown > .dropdown-menu {
        margin-top: 0;
    }
}
.site-header .navbar-nav .dropdown .dropdown-toggle::after {
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 4px;
}
.site-header .navbar-nav .dropdown .dropdown-menu {
    margin-top: 0;
    padding: 8px 0;
    background: #000;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    min-width: 200px;
}
.site-header .navbar-nav .dropdown .dropdown-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
    padding: 8px 20px;
    transition: background 0.2s, color 0.2s;
}
.site-header .navbar-nav .dropdown .dropdown-item:hover {
    color: #000;
    background: #fff;
}

.site-header .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}

.header-phone {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: color 0.2s;
}
.header-phone:hover { color: #fff; text-decoration: none; }

.btn-header-cta {
    padding: 9px 22px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-header-cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    text-decoration: none;
}

.portal-link {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.72rem !important;
}
.portal-link:hover { color: rgba(255,255,255,0.65) !important; }

@media (max-width: 991.98px) {
    .site-header .navbar { padding: 12px 16px; }
    .site-header .navbar-brand img { height: 38px; }
    .navbar-collapse {
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 12px;
    }
    .site-header .navbar-nav .nav-link { padding: 10px 4px !important; }
    .site-header .header-right {
        margin-left: 0;
        padding: 12px 4px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .header-phone { display: flex !important; }
    .btn-header-cta { width: 100%; text-align: center; display: block; }
}

/* Placeholder para mantener altura cuando sticky */
.sticky-placeholder { display: none; }
.sticky-placeholder.active { display: block; }

/*
  Zona eliminada: .top-bar y .nav-bar legacy
*/

.top-bar .container-fluid {
    padding: 0 15px;
}

.top-bar .logo {
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 74px);
    min-height: 400px;
    max-height: 720px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel {
        height: 60vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 50vh;
        min-height: 250px;
    }
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff; /* Texto blanco */
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.carousel .carousel-caption h1 {
    color: #ffffff; /* Texto blanco */
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.carousel .carousel-caption .btn {
    padding: 12px 25px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; /* Texto blanco */
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: .3s;
    margin-top: 15px;
}

.carousel .carousel-caption .btn:hover {
    color: #000000;
    background: #ffffff;
    border-color: #ffffff;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
    .carousel .carousel-caption {
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption {
        padding: 10px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 20px;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 0;
    padding: 48px 0;
    text-align: center;
    background: #111111;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff; /* Línea blanca */
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
}

.page-header a:hover {
    color: #000000; /* Enlaces negros al pasar el cursor */
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff; /* Separador blanco */
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #000000; /* Texto negro */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    color: #000000; /* Encabezado negro */
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #ffffff; /* Fondo blanco */
}
    
.feature .col-md-12:nth-child(2n) {
    color: #000000; /* Texto negro */
    background: #f3f3f3; /* Fondo gris claro */
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #000000; /* Borde negro */
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #ffffff; /* Fondo blanco */
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #f3f3f3; /* Fondo gris claro */
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #000000; /* Iconos negros */
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #000000; /* Texto negro */
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #000000; /* Texto negro */
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #000000; /* Texto negro */
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: var(--section-pad) 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
    color: #000000; /* Texto negro */
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff; /* Texto blanco */
    border-radius: 0;
    background: #000000; /* Fondo negro */
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #000000;
    background: #ffffff;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    color: #000000; /* Iconos negros */
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    color: #ffffff; /* Iconos blancos */
}

.fact .fact-left, .fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
    color: #000000; /* Texto negro */
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000; /* Texto negro */
}

.fact .fact-left {
    background: #ffffff; /* Fondo blanco */
}

.fact .fact-right {
    background: #f3f3f3; /* Fondo gris claro */
}

.fact .fact-left h2 {
    color: #000000; /* Texto negro */
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: var(--section-pad) 0 var(--section-pad-sm) 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7); /* Fondo negro con opacidad */
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff; /* Texto blanco */
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #000000; /* Fondo negro */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff; /* Texto blanco */
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff; /* Fondo blanco */
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff; /* Fondo blanco */
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: #000000; /* Fondo negro */
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #000000; /* Triángulo negro */
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    opacity: 1;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #000000; /* Fondo negro */
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* Texto blanco */
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff; /* Texto blanco */
}

.team .team-item:hover .team-text {
    background: #ffffff; /* Fondo blanco */
}

.team .team-item:hover .team-text h2 {
    color: #000000; /* Texto negro */
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff; /* Texto blanco */
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee; /* Fondo azul */
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998; /* Fondo azul */
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8; /* Fondo azul */
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b; /* Fondo azul */
    left: 50px;
    transition: .3s .3s;
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #000000; /* Línea negra */
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1, .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff; /* Fondo blanco */
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #000000; /* Texto negro */
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #000000; /* Fondo negro */
    color: #ffffff; /* Texto blanco */
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #000000; /* Color del icono */
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #ffffff; /* Color del icono expandido */
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff; /* Fondo blanco */
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #ffffff; /* Texto blanco */
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff; /* Texto blanco */
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff; /* Texto blanco */
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #000000; /* Fondo negro */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff; /* Texto blanco */
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f3f3; /* Fondo gris claro */
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #000000; /* Línea negra */
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #000000; /* Texto negro */
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f3f3; /* Fondo gris claro */
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
    color: #000000; /* Texto negro */
}

.blog .pagination .page-link {
    color: #000000; /* Texto negro */
    border-radius: 0;
    border-color: #000000; /* Borde negro */
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #000000; /* Texto negro */
    border: 1px solid #000000; /* Borde negro */
}

.single .single-tags a:hover {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f3f3; /* Fondo gris claro */
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000; /* Texto negro */
}

.single .single-bio-text p {
    margin: 0;
    color: #000000; /* Texto negro */
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000; /* Texto negro */
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
    color: #000000; /* Texto negro */
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #000000; /* Texto negro */
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000; /* Texto negro */
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #000000; /* Texto negro */
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #000000; /* Texto negro */
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000; /* Texto negro */
}

.single .comment-form form {
    padding: 30px;
    background: #f3f3f3; /* Fondo gris claro */
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
    border: 1px solid #000000; /* Borde negro */
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.single .comment-form .btn:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
    color: #000000; /* Texto negro */
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #000000; /* Línea negra */
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #000000; /* Borde negro */
    border-radius: 0;
    background: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #000000; /* Texto negro */
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
    color: #000000; /* Texto negro */
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000; /* Icono negro */
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
    color: #000000; /* Texto negro */
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #000000; /* Texto negro */
    border: 1px solid #000000; /* Borde negro */
}

.single .tag-widget a:hover {
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

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

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #ffffff; /* Texto blanco */
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #000000; /* Fondo negro */
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7); /* Fondo negro con opacidad */
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff; /* Texto blanco */
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #000000; /* Fondo negro */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff; /* Texto blanco */
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #000000; /* Fondo negro */
}

.contact .col-md-6:last-child {
    background: #ffffff; /* Fondo blanco */
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, .2); /* Borde negro con opacidad */
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #ffffff; /* Iconos blancos */
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #ffffff; /* Texto blanco */
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff; /* Texto blanco */
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #000000; /* Texto negro */
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(0, 0, 0, .4); /* Borde negro con opacidad */
    background: #ffffff; /* Fondo blanco */
}

.contact .contact-form textarea {
    color: #000000; /* Texto negro */
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(0, 0, 0, .4); /* Borde negro con opacidad */
    background: #ffffff; /* Fondo blanco */
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
    color: #000000; /* Placeholder negro */
    opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #000000;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #000000; /* Fondo negro */
    color: #ffffff; /* Texto blanco */
    font-weight: 400;
    font-size: 14px;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* Texto blanco */
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff; /* Línea blanca */
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff; /* Enlaces blancos */
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3); /* Borde blanco con opacidad */
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff; /* Iconos blancos */
}

.footer .footer-social a:hover {
    background: #ffffff; /* Fondo blanco */
    border-color: #ffffff; /* Borde blanco */
}

.footer .footer-social a:hover i {
    color: #000000; /* Iconos negros */
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #000000; /* Borde negro */
    border-radius: 0;
    background: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff; /* Texto blanco */
    background: #000000; /* Fondo negro */
    border-radius: 0;
    border: 2px solid #ffffff; /* Borde blanco */
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #000000; /* Texto negro */
    background: #ffffff; /* Fondo blanco */
}

.footer .newsletter label a {
    color: #b0b0b0;
    text-decoration: underline;
}

.footer .newsletter label a:hover {
    color: #ffffff;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1); /* Borde blanco con opacidad */
    border-bottom: 1px solid rgba(255, 255, 255, .1); /* Borde blanco con opacidad */
}

.footer .footer-menu .f-menu a {
    color: #ffffff; /* Enlaces blancos */
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1); /* Borde blanco con opacidad */
}

.footer .footer-menu .f-menu a:hover {
    color: #000000; /* Texto negro */
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff; /* Texto blanco */
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff; /* Enlaces blancos */
    font-weight: 400;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #000000; /* Texto negro */
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/*******************************/
/********* Form CSS ***********/
/*******************************/
.form-control {
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra ligera */
    margin-bottom: 15px; /* Espaciado entre elementos */
    background: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

.form-control::placeholder {
    color: #aaa;
    opacity: 1;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Resaltar en focus */
    outline: none; /* Elimina el borde de focus predeterminado */
    border-color: #007bff;
}

/* Botón de envío con transición */
.btn-primary {
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Estilos para select */
.form-select {
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra ligera */
    margin-bottom: 15px; /* Espaciado entre elementos */
    appearance: none; /* Elimina el estilo predeterminado del navegador */
    background-color: #ffffff; /* Fondo blanco */
    padding: 10px; /* Espaciado interno */
    border: 1px solid #ddd; /* Borde ligero */
    color: #000000; /* Texto negro */
}

.form-select:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Resaltar en focus */
    outline: none; /* Elimina el borde de focus predeterminado */
    border-color: #007bff;
}

/* Para mejorar el aspecto del botón desplegable */
.form-select::-ms-expand {
    display: none;
}

/* Estilos adicionales para el botón desplegable en navegadores que lo permitan */
.select-arrow {
    pointer-events: none;
    position: relative;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
}

/* Envolver el select en un div para posicionar la flecha */
.select-wrapper:after {
    content: '';
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('path_to_your_arrow_image.png'); /* Ruta a tu imagen de flecha */
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px; /* Ajusta este valor según sea necesario */
}

.select-wrapper i {
    position: absolute;
    right: 10px; /* Ajusta estos valores según sea necesario */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/*******************************/
/*********** Misc CSS **********/
/*******************************/
blockquote {
    background: #f3f3f3; /* Fondo gris claro */
    border-left: 5px solid #000000; /* Borde negro */
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before {
    color: #000000; /* Comillas negras */
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 10px;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

/* Tabla */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #000000; /* Texto negro */
    background-color: #ffffff; /* Fondo blanco */
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #000000; /* Borde negro */
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #000000; /* Borde negro */
}

.table tbody + tbody {
    border-top: 2px solid #000000; /* Borde negro */
}

.table-hover tbody tr:hover {
    color: #000000; /* Texto negro */
    background-color: rgba(0, 0, 0, 0.075); /* Fondo gris claro */
}

/* Modal */
.modal-content {
    background-color: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid #000000; /* Borde negro */
}

.modal-footer {
    border-top: 1px solid #000000; /* Borde negro */
}

.modal-title {
    color: #000000; /* Título negro */
}

.modal-body {
    color: #000000; /* Texto negro */
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro con opacidad */
}

