:root {
    /* PALETA DE COLORES PRAXIA */
    --primary-color: #349c95;
    /* Color Principal (Verde Azulado - Praxia) */
    --primary-dark: #2a7f7a;
    /* Versión más oscura para hovers */
    --secondary-color: #ffffff;
    /* Color Secundario (Blanco) */

    --dark-color: #333333;
    /* Para textos generales */
    --light-bg: #f0fffe;
    /* Fondo muy suave con tinte del color principal */
    --text-muted: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background: linear-gradient(-45deg, #f0fffe, #ffffff, #e8f8f6, #ffffff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 4px 20px rgba(52, 156, 149, 0.1);
    padding: 15px 0;
    background-color: var(--secondary-color);
    border-bottom: 2px solid rgba(52, 156, 149, 0.05);
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(-2deg);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-appointment {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 156, 149, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 156, 149, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Hero Section */
/* Hero Section - Mosaic Design */
/* Hero Video Section */
.hero-video-section {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(52, 156, 149, 0.35) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-new {
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1.1;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-subtitle-new {
    font-size: 1.8rem;
    font-weight: 600;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.hero-description-new {
    font-size: 1.1rem;
    line-height: 1.8;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn-primary-new,
.hero-btn-secondary-new {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary-new {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

.hero-btn-primary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52, 156, 149, 0.4);
}

.hero-btn-secondary-new {
    background: white;
    color: var(--dark-color);
    border: 2px solid white;
}

.hero-btn-secondary-new:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

.hero-btns-new {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.scroll-down-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 156, 149, 0.15), rgba(52, 156, 149, 0.05));
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2.5s cubic-bezier(0.36, 0, 0.66, 1) infinite;
}

.scroll-down-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 156, 149, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(-45deg, #f0fffe, #ffffff, #e8f8f6, #ffffff);
    background-size: 400% 400%;
}

.gallery-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    width: 100%;
}

.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(52, 156, 149, 0.1);
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
    aspect-ratio: 1;
}

.gallery-mosaic-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-mosaic-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-mosaic-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-mosaic-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-mosaic-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-mosaic-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-mosaic-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-mosaic-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-mosaic-item:nth-child(n+9) { animation-delay: 0.45s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-mosaic-item:hover .gallery-mosaic-img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 156, 149, 0.6), rgba(52, 156, 149, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-mosaic-item:hover .gallery-mosaic-overlay {
    opacity: 1;
}

.gallery-zoom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-zoom-btn:hover {
    transform: scale(1.15) rotate(-15deg);
    box-shadow: 0 12px 30px rgba(52, 156, 149, 0.3);
}

.gallery-mosaic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(52, 156, 149, 0.2);
}

/* Lightbox2 Custom Styling */
#lightbox {
    background-color: rgba(0, 0, 0, 0.95);
}

.lb-outerContainer {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lb-image {
    border-radius: 12px;
}

.lb-data {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 0 0 12px 12px;
}

.lb-data .lb-details {
    color: white;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 156, 149, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.lb-close {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 156, 149, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lb-close:hover {
    background-color: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
}

.hero-title {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 3.8rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
    border-left: none;
    padding-left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-btn-primary {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(52, 156, 149, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 156, 149, 0.35);
}

.hero-btn-secondary {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50px;
    border-width: 2px;
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(52, 156, 149, 0.2);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(52, 156, 149, 0.25);
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    animation: fadeInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.hero-image:hover {
    transform: translateY(-10px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons Standard */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(52, 156, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(52, 156, 149, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 156, 149, 0.3);
}

/* Stats/Info Cards */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 156, 149, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(52, 156, 149, 0.2);
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title h2::after {
    content: '';
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    animation: expandWidth 0.8s ease 0.3s backwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.text-primary {
    color: var(--primary-color) !important;
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 156, 149, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(52, 156, 149, 0.25);
}

.service-box:hover::before {
    left: 100%;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(52, 156, 149, 0.15), rgba(52, 156, 149, 0.08));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 156, 149, 0.1);
}

.service-box:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(52, 156, 149, 0.25), rgba(52, 156, 149, 0.15));
}

/* Education Section */
.education-section {
    background: linear-gradient(135deg, #f0fffe, #e8f8f6);
    position: relative;
    overflow: hidden;
}

.education-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 156, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.education-card-simple {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 3px solid transparent;
    border-left: none !important;
    position: relative;
    overflow: hidden;
}

.education-card-simple:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(52, 156, 149, 0.2);
    border-color: rgba(52, 156, 149, 0.2);
}

.education-card-simple .degree-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.education-card-simple:hover .degree-title {
    color: var(--primary-color);
}

.education-card-simple .institution-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.education-card-simple .institution-name i {
    color: var(--primary-color);
}

.education-card-simple .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0fffe, #e8f8f6);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 156, 149, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 28s ease-in-out infinite reverse;
}

/* Location Section */
.contact-info-box {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.contact-info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.contact-icon {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(52, 156, 149, 0.3);
    transition: all 0.3s ease;
}

.contact-info-box:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Custom BG for contact box */
.bg-custom-dark {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
    animation: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a3f3e, #1e2d2c);
    color: white;
    padding: 50px 0 25px;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 156, 149, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

footer a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
        margin-top: 30px;
        text-align: center;
    }

    .hero-subtitle,
    .hero-desc,
    .hero-btns {
        text-align: center;
    }

    .hero-subtitle {
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
        display: inline-block;
    }

    .hero-image {
        margin-top: 40px;
        border-radius: 30px;
        box-shadow: 0 15px 40px rgba(52, 156, 149, 0.2);
    }

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .navbar-brand img {
        max-height: 45px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-box {
        padding: 30px;
    }

    .info-card {
        padding: 30px;
    }
}

/* Spacing Utilities */
.py-100 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

@media (max-width: 991px) {
    /* Gallery responsive tablet */
    .gallery-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .py-100 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    /* Gallery responsive */
    .gallery-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gallery-mosaic-item {
        aspect-ratio: 1;
    }

    /* Hero responsive */
    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.2rem;
    }

    .hero-description-new {
        font-size: 1rem;
    }
}

/* Animation on scroll (opcional, se puede agregar JS más adelante) */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION - ESTILOS MEJORADOS
   ============================================ */

.about-content-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.8s ease backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(52, 156, 149, 0.2);
    border-color: rgba(52, 156, 149, 0.3);
}

/* Decoración de onda superior */
.wave-decoration {
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    opacity: 0.1;
}

.wave-decoration.top {
    top: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50" stroke="%23349c95" stroke-width="3" fill="none"/></svg>') repeat-x;
    animation: wave-animation 4s linear infinite;
}

.wave-decoration.bottom {
    bottom: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,100 500,50 T1000,50" stroke="%23349c95" stroke-width="3" fill="none"/></svg>') repeat-x;
    animation: wave-animation 4s linear infinite reverse;
}

@keyframes wave-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animación de onda en el texto del título */
@keyframes wave-text {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-5px);
    }
}

/* Separador decorativo ondulado */
.separator-wave {
    position: relative;
    height: 30px;
    margin: 30px 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23349c95;stop-opacity:0.15" /><stop offset="50%" style="stop-color:%23349c95;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23349c95;stop-opacity:0.15" /></linearGradient></defs><path d="M0,50 Q250,0 500,50 T1000,50" stroke="url(%23grad)" stroke-width="2" fill="none"/></svg>') center no-repeat;
    background-size: 100% 100%;
    animation: wave-float 3s ease-in-out infinite;
}

@keyframes wave-float {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* Bloque de misión y visión con bordes ondulados */
.mission-block,
.vision-block {
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.mission-block::before,
.vision-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.mission-block:hover,
.vision-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(52, 156, 149, 0.15);
    border-left-width: 8px;
}

.mission-block:hover::before,
.vision-block:hover::before {
    left: 100%;
}

/* Lista de valores con animación */
.values-list li {
    cursor: pointer;
    animation: slideInLeft 0.6s ease backwards;
}

.values-list li:hover {
    transform: translateX(8px);
    background: rgba(52, 156, 149, 0.12) !important;
    border-left-width: 6px !important;
}

/* Contenedor de imagen con efecto flotante */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.floating-circle {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(52, 156, 149, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-pulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.about-image-effect {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-effect:hover {
    transform: translateY(-15px) scale(1.02);
    filter: drop-shadow(0 30px 80px rgba(52, 156, 149, 0.3));
}

/* Responsive para About Section */
@media (max-width: 991px) {
    .about-content-card {
        padding: 2.5rem !important;
        border-radius: 30px !important;
    }

    .separator-wave {
        display: none;
    }

    .mission-block,
    .vision-block {
        margin-bottom: 1.5rem !important;
    }
}