#home .custom-section-svg {
    display: flex;
    align-items: center;
}
#home .owl-carousel .owl-item {
    opacity: 1 !important;
}
/*#home .col-lg-6:not(.custom-section-svg) {
    z-index: 2;
}*/
#home>.custom-section-svg {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    position: relative;
    align-items: center;
    overflow: hidden;
}
#home .custom-section-svg>svg {
    position: absolute;
}
/*#home>.custom-section-svg>.col-lg-6 {
    width: 50% !important;
    overflow: hidden;
}*/

.service-card {
    position: relative;
    padding: 0;
}

.circle-outer {
    position: relative;
    padding-top: 100%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.circle-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem !important;
    overflow: auto;
}

@media (max-width: 767px) {
    .circle-inner {
        position: relative;
    }
    .circle-outer {
        padding: 0 !important;
        border-radius: 10px !important;
    }
}

.service-title {
    font-size: 1.25rem;  /* Tamaño consistente para todos los títulos */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #333;
}

.circle-inner::-webkit-scrollbar {
    display: none;
}

.circle-inner p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: #63A7EB;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #5590c7;
}

@media (max-width: 992px) {
    .circle-outer {
        padding-top: 110%;
        border-radius: 10%;
    }

    .circle-inner {
        padding: 1.5rem !important;
    }

    .service-title {
        font-size: 1.1rem; /* Ligeramente más pequeño en móvil */
    }
}

.fluid-container {
    overflow: hidden;
    width: 100%;
}

.resource-section {
    position: relative;
    margin: 3rem 0;
}

.content-wrapper {
    position: relative;
    z-index: 0;
    padding: 3rem 0;
    overflow: hidden;
    margin: 2rem 0;
}

.bg-light-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.bg-light-green {
    background: linear-gradient(135deg, #f1f8e9, #dcedc8);
}

.bg-light-yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.content-image {
    height: 400px;
    width: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.content-text {
    padding: 2rem;
}

.content-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-text h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--btn-color, #000);
    border-radius: 3px;
}

.buttons-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-fluid {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--btn-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-fluid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
}

.btn-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn-fluid:hover::before {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

@media (max-width: 991px) {
    .content-image {
        height: 300px;
        width: 300px;
        margin: 1rem 0;
        transform: none;
    }

    .content-text {
        text-align: center;
        padding: 1rem;
    }

    .content-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .buttons-group {
        justify-content: center;
    }

    .tab-buttons {
        padding: 0 1rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

section.section {
    background: #a7cdeb;
}

.custom-bg-color-1 {
    background-color: #a7cceb !important;
}

.custom-bg-color-2 {
    background-color: #eff1f3 !important;
}

.tabs-navigation {
    margin-bottom: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: #666;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #63A7EB;
    transition: width 0.3s ease;
}

.tab-btn:hover::after {
    width: 80%;
}

.tab-btn.active {
    color: #63A7EB;
    font-weight: 600;
}

.tab-btn.active::after {
    width: 80%;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section.section-with-shape-divider .shape-divider svg {
    width: 100%;
    height: auto;
}

/* Estilo por defecto para pantallas pequeñas */
.shape-divider-initial {
    height: 190px !important;
}

/* Media query para pantallas de laptop */
@media (min-width: 1024px) and (max-width: 1280px) {
    .shape-divider-initial {
        height: 190px !important; /* Asegúrate de que !important esté después del valor */
    }
}

/* Media query para pantallas extra grandes (XL) */
@media (min-width: 1281px) {
    .shape-divider-initial {
        height: 250px !important;
    }
}

/* Estilo por defecto para pantallas pequeñas */
.shape-divider-transformation {
    height: 160px !important;
}

/* Media query para pantallas de laptop */
@media (min-width: 1024px) and (max-width: 1280px) {
    .shape-divider-transformation {
        height: 160px !important; /* Asegúrate de que !important esté después del valor */
    }
}

/* Media query para pantallas extra grandes (XL) */
@media (min-width: 1281px) {
    .shape-divider-transformation {
        height: 260px !important;
    }
}

.video-js {
    width: 100%;
}

.bg-gradient-to-bottom {
    background-color: rgba(204, 102, 0, 0.6) !important;
    background-image: linear-gradient(to bottom, rgba(204, 102, 0, 0.6) 0%, rgba(255, 210, 0, 0.6) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088CC', endColorstr='#e36159', GradientType=1);
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
    background-color: rgba(204, 102, 0, 0.6);
    border-color: rgba(204, 102, 0, 0.6) rgba(204, 102, 0, 0.6) rgba(204, 102, 0, 0.6);
    color: #FFF;
}

.owl-carousel.carousel-bottom-inside-shadow .owl-stage-outer:after {
    background-image: linear-gradient(360deg, rgba(204, 102, 0, 0.6) 0%, transparent 100%);
}

.owl-carousel .owl-item {
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.6;
}

.owl-carousel .owl-item.center {
    transform: scale(1.15);
    opacity: 1;
    z-index: 2;
}

.owl-carousel .owl-stage-outer {
    padding: 60px 0 30px;
    overflow: visible;
}

.owl-carousel .owl-item article {
    height: 100%;
}

.row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.row>.col-lg-8 {
    z-index: 1;
}

#contenido .custom-section-svg > .container,#testimoniales .container {
    position: relative;
    top: initial;
    bottom: initial;
    left: initial;
    transform: initial;
}

#contenido svg,#testimoniales svg {
    position: absolute;
}

.owl-carousel .owl-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1 !important;
    border-radius: 15px;
}

#aboutus .custom-svg-wrapper-1 .img-fluid {
    border-radius: 15px;
}

.icon-size {
    max-width: 75px;
}

#experiencias {
    background-color: #f8972c;
    width: 100%;
    max-width: 100% !important;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 15px;
    padding: 20px 0;
}

.step {
    background: linear-gradient(270deg, #bebebe, #fafafa);
    border-radius: 10px;
    padding: 0;
    text-align: center;
    width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step h2 {
    font-size: 24px;
    color: white;
    padding: 10px 0;
    border-radius: 0;
    margin-bottom: 10px;
    margin-top: 30px;
}

.step p {
    font-size: 14px;
    color: #333;
    padding: 0 5px;
}

.step:nth-child(1) h2 { background: #FFD700; }
.step:nth-child(2) h2 { background: #6ABF4B; }
.step:nth-child(3) h2 { background: #3498db; }
.step:nth-child(4) h2 { background: #8e44ad; }
.step:nth-child(5) h2 { background: #e74c3c; }
.step:nth-child(6) h2 { background: #2d2d2d; }

#aboutus .step h3 {
    margin: 1em auto 0.75em;
    font-size: 1.5em;
}

#aboutus .step img {
    max-height: 38px;
    width: auto;
    margin: 0 auto 1.5em;
}

#capacitacion .col-lg-6 h2, #capacitacion .col-lg-6 p, #capacitacion .col-lg-6 ul,
#liderazgo .col-lg-6 p, #liderazgo .col-lg-6 ul,
#administrativos .col-lg-6 p, #administrativos .col-lg-6 ul,
#desarrollo .col-lg-6 p, #desarrollo .col-lg-6 ul {
    text-align: left;
}

#liderazgo h2, #administrativos h2, #desarrollo h2, #capacitacion h2 {
    text-align: center;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

#capacitacion .container>.text-center,#liderazgo .container .text-center, #administrativos .container>.text-center, #desarrollo>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

#capacitacion .container>.text-center h3,#liderazgo .container h3, #administrativos .container h3, #desarrollo .container h3 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

#home .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#home .owl-carousel .owl-item, #home .owl-carousel .owl-item div,#home .owl-carousel .owl-item img {
    aspect-ratio: 4 / 3;
}

#home .owl-carousel .owl-item img {
    width: 100%;
    max-height: 850px!important;
    object-position: center;
}

#home .custom-section-svg>svg {
    z-index: 1;

    @media (max-width: 991px) {
        z-index: 0;
    }
    @media (min-width: 992px) and (max-width: 1110px) {
        transform: scale(2.5) translate(-9em, -0.35em);
    }
    @media (min-width: 1111px) {
        transform: scale(2.5) translate(-20%, -1%);
    }
}

#home .col-lg-6.custom-section-svg,#home .owl-carousel {
    z-index: 0;
}

/*#home .custom-section-svg>.col-lg-6:not(.owl-carousel) {
    z-index: 3;
}*/

img[src*="plenia8.jpg"] {
    object-position: 50% 25% !important;
}

img[src*="plenia5.png"] {
    object-position: 50% 85% !important;
}

img[src*="plenia11.png"] {
    object-position: 50% 20% !important;
}

.integracion #contenido svg {
    filter: hue-rotate(-15deg) saturate(3);
}

.integracion #contenido #aboutus .custom-svg-wrapper-1>div,
.cultura #contenido #aboutus .custom-svg-wrapper-1>div,
.cultura #capacitacion .custom-svg-wrapper-1>div,
.lideres #contenido #aboutus .custom-svg-wrapper-1>div {
    z-index: 1;
    position: relative;
}

.integracion .owl-carousel .owl-item.center,
.lideres .owl-carousel .owl-item.center {
    transform: none !important;
}

.integracion .image-section {
    z-index: 2;
    margin-top: 0;
    overflow-x: auto;
    text-align: center;
    position: relative;
}

.integracion .image-section img {
    max-width: 1280px;
    width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 749px) {
    .integracion .image-section {
        overflow-x: auto;
    }
    .integracion .image-section img {
        width: auto !important;
        min-height: 172px;
    }
}
@media (max-width: 991px) and (min-width: 750px) {
    .integracion .image-section img {
        width: 100% !important;
    }
}
@media (max-width: 991px) {
    .integracion .image-section {
        padding: 0 !important;
    }
}

#experiencias svg {
    max-height: max-content;
}

.lideres .body svg {
    max-height: max-content !important;
}

.cultura .custom-svg-wrapper-1 svg g.appear-animation {
    filter: hue-rotate(245deg) saturate(3);
}

.cultura .custom-svg-wrapper-1 svg>g[data-plugin-float-element]:not(.appear-animation) {
    filter: hue-rotate(45deg) saturate(1);
}

.cultura #internal {
    position: relative;
    z-index: 2;
}
.cultura #internal .row {
    flex-direction: row;
    justify-content: space-evenly;
}
.cultura #internal .col-md-3 {
    width: auto;
}
.cultura #internal a {
    /*background: linear-gradient(73deg, #419325, #79be40) !important; */
    transition: all 0.3s ease;
    border-radius: 5px;
    border: none;
    color: #FFF;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}
.cultura #internal a:hover {
    transform: scale(1.05);
}

@media (min-width: 992px) and (max-width: 1199px) {
    #team .col-lg-4 {
        max-width: 95%;
    }
}
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step {
        width: 90%;
    }
}

/* lideres */

#CoachingSlider {
    cursor: grab;
    margin-top: -7rem;
}

#CoachingSlider:active {
    cursor: grabbing;
}

.slider__container {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-bottom: 150px;
    min-height: 400px;
}
.slider__container:before {
    content: "Corrientes de Coaching y mentoring";
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: initial;
    bottom: -1%;
    display: flex;
    justify-content: center;
    align-self: center;
    z-index: 1;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    padding: 0 2.5rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.slider__container:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.slider__container .slide__container {
    position: absolute;
    background: transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.slider__container .slide__container .slide {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 50%);
    transition: all 0.5s ease-in-out;
    user-select: none;
}
.slider__container .slide__container .slide img {
    max-width: 35px;
    max-height: 35px;
    height: auto;
    width: auto;
    margin: 0 auto;
    flex-basis: 100%;
    object-fit: contain;
}
.slider__container .slide__container .slide h5 {
    padding: 0 0.5rem;
}

.slider__container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide .circle {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 8px solid transparent;
}

.slide img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.slide h5 {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    margin: 0;
    width: auto;
    min-width: 120px;
    text-align: center;
}

/* Colores de borde */
.icon_purple .circle {border-color:#8e44ad}
.icon_pink .circle {border-color:#e91e63}
.icon_red .circle {border-color:#e74c3c}
.icon_orange .circle {border-color:#e67e22}
.icon_yellow .circle {border-color:#f1c40f}
.icon_blue_sky .circle {border-color:#3498db}
.icon_blue .circle {border-color:#2196F3}
.icon_blue_dark .circle {border-color:#34495e}

.slide ul {
    margin: 2rem auto 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slide--active ul{opacity:1}
.slide ul li{line-height:1.25em}

/* Initial positions for slides */
.slide__container:nth-child(1) { transform: translate(180px, 0px); }
.slide__container:nth-child(2) { transform: translate(127.279px, 127.279px); }
.slide__container:nth-child(3) { transform: translate(0px, 180px); }
.slide__container:nth-child(4) { transform: translate(-127.279px, 127.279px); }
.slide__container:nth-child(5) { transform: translate(-180px, 0px); }
.slide__container:nth-child(6) { transform: translate(-127.279px, -127.279px); }
.slide__container:nth-child(7) { transform: translate(0px, -180px); }
.slide__container:nth-child(8) { transform: translate(127.279px, -127.279px); }

/* Active slide styling */
.slide--active {
    z-index: 10;
}

/* Ensure proper initial visibility */
.slide {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 768px) {
    #blog p.custom-font-secondary, #blog h4 {
        padding: 0 2rem;
    }
    .blog-post .fase1>div,.flex-cols-xs{
        flex-direction: column;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .custom-section-svg {
        text-align: center;
    }

    .custom-section-svg .svg-container {
        max-width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }

    .custom-section-svg svg {
        max-width: 100%;
        height: auto;
    }

    .owl-carousel .owl-stage-outer {
        padding: 0;
    }

    #home .owl-carousel .owl-item, #home .owl-carousel .owl-item div,#home .owl-carousel .owl-item img {
        aspect-ratio: 4 / 3;
    }

    #aboutus > div.col-lg-6.pb-sm-5.pb-lg-0.mb-5.mb-lg-0 > div > div > div.owl-stage-outer > div > div > div > img {
        aspect-ratio: 4 / 3;
    }
}

.owl-carousel .owl-nav button {
    display: block !important; /* Asegura que sean visibles */
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Evita problemas de clics en elementos detrás */
    z-index: 1000; /* Asegura que esté sobre otros elementos */
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2); /* Hace los botones semi-transparentes */
    color: white;
    padding: 12px 15px;
    font-size: 24px;
    border-radius: 50%;
    pointer-events: all; /* Permite hacer clic en los botones */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.owl-carousel .owl-prev {
    left: 3rem !important; /* Cambia esto si sigue sin aparecer */
}

.owl-carousel .owl-next {
    right: 8rem !important;
}

/* Mobile*/

@media (max-width: 767px) {
    #experiencias > div.row > div.col.appear-animation.animated.appear-animation-visible > div > div.owl-nav > button.owl-prev {
        display: none !important;
    }

    #experiencias > div.row > div.col.appear-animation.animated.appear-animation-visible > div > div.owl-nav > button.owl-next {
        display: none !important;
    }
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Aumenta la visibilidad al pasar el mouse */
    transform: translateY(-50%) scale(1.1); /* Efecto sutil de agrandamiento */
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    opacity: 1 !important; /* Asegura que son visibles */
    visibility: visible !important;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    z-index: 9999 !important; /* Asegura que estén por encima de todo */
    position: absolute;
}

.owl-carousel.nav-arrows-2 .owl-nav .owl-prev, .owl-carousel.nav-arrows-2 .owl-nav .owl-next {
    width: 35px !important;
    opacity: .5 !important;
    background: transparent !important;
    border: none !important;
}

.owl-carousel.carousel-right-side-nav {
    width: 100% !important;
}

@media (min-width: 992px) {
    #header .header-nav-main nav > ul > li > a {
        padding: 0 .5rem !important;
    }
}

.comments-container {
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.comment-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.comment-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.comment-textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74,144,226,0.1);
}

.submit-button {
    background-color: #4a90e2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #357abd;
}

.submit-button:active {
    transform: translateY(1px);
}

.comments-list {
    margin-top: 30px;
}

.comment-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.comment-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

.comment-date {
    font-size: 14px;
    color: #666;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.comment-item {
    animation: fadeIn 0.3s ease-out;
}

/* Loading state */
.submit-button.loading {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 600px) {
    .comments-container {
        padding: 0 15px;
    }

    .comment-form {
        padding: 15px;
    }
}
