/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Mejoras en hover effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* Mejora en la transición del navbar */
.navbar.sticky-top {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        border-top: 1px solid #EEEEEE;
        margin-top: 10px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-toggler {
        margin-right: auto;
        order: 1;
        position: absolute;
        left: 15px;
        top: 15px;
    }

    .navbar-brand {
        order: 2;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Mejora en la animación del menú dropdown */
.dropdown-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

.dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/* Efecto parallax para imágenes de fondo */
.page-header {
    background-attachment: fixed;
    transition: background-position 0.5s ease-out;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}

/* Team Section Styles */
.team-section {
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.team-member-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

/* Mejoras en animaciones */
.team-member-card {
    transition: all 0.3s ease-in-out;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.team-image-wrapper img {
    transition: all 0.5s ease;
}

.team-member-card:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-social-links {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(50, 195, 108, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.team-member-card:hover .team-social-links {
    bottom: 0;
    opacity: 1;
}

.team-social-links .btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.team-social-links .btn-square {
    width: 35px;
    height: 35px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 3px;
}

.team-social-links .btn-square:hover {
    background: var(--primary);
    color: white;
}

.team-member-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.team-member-card .text-primary {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-member-card i {
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .team-image-wrapper {
        border-radius: 15px 15px 0 0;
        height: 250px;
    }
    
    .team-member-card .row {
        flex-direction: column;
    }
    
    .team-member-card .col-md-5,
    .team-member-card .col-md-7 {
        width: 100%;
    }

    /* Nuevos estilos para móviles */
    .team-social-links {
        position: relative;
        bottom: 0;
        opacity: 1;
        background: rgba(50, 195, 108, 0.9);
        padding: 10px 0;
        margin-top: -44px;
    }

    .team-member-card:hover .team-social-links {
        transform: none;
    }

    .team-social-links .btn-square {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .team-social-links .btn-square {
        width: 32px;
        height: 32px;
        margin: 0 5px;
        background: white;
        color: var(--primary);
    }

    .team-social-links .btn-square:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Footer Styles */
.footer {
    position: relative; /* Cambiado de fixed a relative */
    background: linear-gradient(0deg, #1A2A36 0%, #2A3B47 100%);
    margin-bottom: 0;
    width: 100%;
}

.footer .btn-link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer .btn-link:hover {
    color: var(--primary) !important;
    padding-left: 8px;
}

.footer .btn-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer .btn-link:hover i {
    transform: translateX(5px);
}

.footer .contact-info span {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer .contact-info div:hover span {
    color: var(--primary);
}

.footer .btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
}

.footer .btn-square:hover {
    transform: translateY(-3px);
}

.footer input {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer input:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.footer .copyright {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer .contact-info .btn-primary {
    background: rgba(50, 195, 108, 0.1);
    border: none;
    color: var(--primary);
}

.footer .contact-info .btn-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Animaciones del Footer */
.footer [class*="col-"] {
    transition: all 0.3s ease;
}

.footer [class*="col-"]:hover {
    transform: translateY(-5px);
}

.footer .btn-square.btn-primary {
    position: relative;
    overflow: hidden;
}

.footer .btn-square.btn-primary::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer .btn-square.btn-primary:hover::after {
    left: 100%;
}

/* Fix para el espacio en blanco */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    min-height: calc(100vh - 100px); /* Ajusta este valor según la altura de tu footer */
    padding-bottom: 2rem;
}

.footer {
    flex-shrink: 0;
}

/* Hero Section Styles */
.app-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hover-effect .overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.hover-effect:hover .overlay-hover {
    opacity: 1;
}

.btn-primary.rounded-pill {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary.rounded-pill:hover {
    transform: scale(1.05);
}

.text-primary {
    color: var(--primary) !important;
}

.wow {
    visibility: hidden;
}

/* Achievement Section Styles */
.achievements-section {
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.achievement-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Animación para las cards de logros */
.achievement-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bg-primary-soft { background-color: rgba(50, 195, 108, 0.1); }
.bg-success-soft { background-color: rgba(25, 135, 84, 0.1); }
.bg-warning-soft { background-color: rgba(255, 193, 7, 0.1); }
.bg-info-soft { background-color: rgba(13, 202, 240, 0.1); }

.achievement-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.counter {
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -1px;
}

.achievement-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievement-card {
        text-align: center;
    }

    .icon-circle {
        margin: 0 auto 1rem auto;
    }
}

/* Animation for counters */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 1s ease-out;
}

/* Animación para el contador */
.counter {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

/* Projects Section Styles */
.projects-section {
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
    padding: 5rem 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-buttons .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--dark);
    background: transparent;
    border: 2px solid var(--primary);
}

.filter-buttons .btn:hover,
.filter-buttons .btn.active {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 195, 108, 0.15);
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 195, 108, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.project-card:hover .project-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay .btn {
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    color: var(--primary);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
}

.project-card:hover .project-overlay .btn {
    transform: scale(1);
}

.project-overlay .btn:hover {
    background: var(--dark);
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 0;
    }

    .filter-buttons {
        gap: 0.25rem;
    }

    .filter-buttons .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .project-card img {
        height: 200px;
    }

    .project-overlay h4 {
        font-size: 1.25rem;
    }
}

/* Animación para los iconos solares */
@keyframes sunRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.solar-card:hover .solar-icon i {
    animation: sunRotate 4s linear infinite;
}