:root {
    --color-primary: #17aaa9;
    --color-white: #ffffff;
    --color-black: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 80px;
    /* Para compensar la navbar fija */
}

/* Navbar siempre visible transparente */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    /* background-color: rgba(0, 0, 0, 0.7) !important; */
}

.navbar.scrolled {
    background-color: var(--color-white) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    width: 60px;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar.scrolled .nav-link {
    color: var(--color-black) !important;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}


.social-icon {
    font-size: 1.2rem;
    margin-left: 15px;
    color: var(--color-white);
    transition: color 0.3s;
}

.navbar.scrolled .social-icon {
    color: var(--color-black);
}

.social-icon:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/fondoHero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    margin-top: -80px;
    /* Compensar el padding del body */
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #128a89;
    border-color: #128a89;
    transform: translateY(-3px);
}



/* Estilos específicos para el botón del hero */
.hero .btn-primary {
    position: relative;
    z-index: 10;
    text-decoration: none !important;
}




/* Secciones */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

/* Tarjetas de servicios - Contenido centrado */
.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-btn {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transition: all 0.3s;
}

.service-btn:hover {
    background-color: #128a89;
    border-color: #128a89;
    transform: scale(1.05);
}

/* Sección Nosotros */
.about-img,
.stats-card {
    transition: all 0.3s;
}

.about-img:hover {
    transform: scale(1.03);
}

.stats-card {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.stats-card:hover {
    transform: scale(1.05);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}


/* Estilos para mensajes flash en formulario de contacto  */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.flash-message {
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease forwards;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}


.flash-success {
    background-color: #4caf50;
}

.flash-error {
    background-color: #f44336;
}

.flash-warning {
    background-color: #ff9800;
}

.flash-info {
    background-color: #2196f3;
}

.flash-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.8;
    line-height: 1;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@media (max-width: 600px) {
    .contact-container {
        padding: 30px 20px;
    }

    body {
        padding: 2px;
        /* 15px */
    }
}



/* Estilos del formulario de contacto */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.text-danger {
    color: #dc3545;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #4d90fe;
    outline: none;
    box-shadow: 0 0 5px rgba(77, 144, 254, 0.5);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}


.form-footer {
    margin-top: 20px;
    font-size: 14px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.flash-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
        /* 20px */
        margin: -20px;
        /* Código nuevo */
    }

}


/* Contacto */
.contact {
    padding: 100px 0;
    /* background: var(--color-light); */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 10s infinite alternate-reverse;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #666;
}

.contact-details i {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #222;
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-links h5 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 40px;
}



/* Botón de WhatsApp con opciones */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    /* background-color: #25D366; */
    background-color: #17aaa9;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 280px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-options-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.whatsapp-options-header i {
    background: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 12px;
}

.whatsapp-options-header h3 {
    color: #333;
    font-size: 18px;
}

.whatsapp-options p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.option-btn:hover {
    background: #e9ecef;
}

.option-btn i {
    margin-right: 10px;
    font-size: 18px;
    color: #25D366;
    width: 24px;
}

.option-text {
    flex: 1;
}

.option-title {
    font-weight: 600;
    color: #333;
    font-size: 12px;
    /* 14px | titulo */
}

.option-desc {
    font-size: 10px;
    /* 12px | Subtitulo */
    color: #666;
}

.close-options {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
}

.close-options:hover {
    color: #333;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-options {
        width: 260px;
        right: -10px;
    }
}

/* Fin WhatsApp */


/* Botón ir arriba */
.go-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    transform: translateY(-5px);
    background-color: #128a89;
}

/* Estilos para el botón del menú hamburguesa */
.navbar-toggler {
    border: 0px solid var(--color-primary);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Estilos para el menú desplegable en móviles */
.navbar-collapse {
    background-color: transparent;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar.scrolled .navbar-collapse {
        background-color: var(--color-white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 10px 0;
    }

    .d-flex {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Animación de Corazón Latido */
.corazon-latido {
    display: inline-block;
    animation: latido 1.5s infinite ease-in-out;
}

@keyframes latido {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.4);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.4);
    }
}


/* Estilos del Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    min-height: 400px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Botón de cierre (X) FIJO dentro del modal */
.modal-close {
    position: absolute;
    /* Cambiado de fixed a absolute */
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    z-index: 2001;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-body {
    padding: 20px 10;
    /* 20px 0*/
}

.modal-features,
.modal-benefits {
    margin: 25px 0;
    padding: 25px;
    background: var(--color-light);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.modal-features h4,
.modal-benefits h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-features ul,
.modal-benefits ul {
    list-style: none;
    padding-left: 0;
}

.modal-features li,
.modal-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.modal-features li::before,
.modal-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--color-light);
}

/* Animaciones para el modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive para modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        padding: 25px 20px;
        width: 95%;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 8px;
        right: 8px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 20px 15px;
    }
}


/* Responsive para botones */
@media (max-width: 768px) {
    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .modal-btn {
        width: 100%;
        min-width: auto;
    }
}



/* Sección Confían en Nosotros */
#confian {
    /*  background: #2c3e50; */
    background: #fff;
    color: #000;
    /* position: relative; */
    overflow: hidden;
}

#confian:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9IiMyYzNlNTAiPjwvcmVjdD48ZyBmaWxsPSIjMzQ5OGRiIiBvcGFjaXR5PSIwLjEiPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iODAiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjgwMCIgY3k9IjIwMCIgcj0iNjAiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjcwMCIgY3k9IjcwMCIgcj0iOTAiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjMwMCIgY3k9IjMwMCIgcj0iNzAiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjkwMCIgY3k9IjUwMCIgcj0iNTAiPjwvY2lyY2xlPjwvZz48L3N2Zz4=');
    opacity: 0.1; */
}

#confian .section-title h2 {
    color: white;
}

#confian .section-title h2::after {
    background: white;
}

#confian .section-title p {
    color: rgba(255, 255, 255, 0.8);

}

.client-logos {
    position: relative;
    width: 70%; /* 100% */
    height: 180px; /* 180px */
    margin: 60px auto 0;
    overflow: hidden;
}

.logos-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: space-around;
    width: 150%; /* 300% */
    height: 100%; /* 100% */
    animation: slide 20s linear infinite; /* 20s */
}

.logo-item {
    flex: 0 0 220px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.1); /* comentado */
    background: white;  /* dejar en transparente */
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 0px solid rgba(255, 255, 255, 0.2); /* 1px */
    transition: all 0.4s ease; /* 0.4s */
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.logo-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.logo-item:hover:before {
    left: 100%;
}

.logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    /*background: rgba(255, 255, 255, 0.15);*/
    background: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.logo-img {
    max-width: 100%;
    max-height: 70px;
    filter: brightness(1) invert(0);
    transition: all 0.4s ease;
}

.logo-item:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1) invert(0);

}

.client-testimonials {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: white;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes slide {
    0% {
        left: 0;
    }
    100% {
        left: -200%;
    }
}









