:root {
    --primary: #16227a;
    --primary-light: #2030a3;
    --primary-dark: #0d144a;
    --accent: #d4281d;
    --accent-hover: #b52219;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --smooth-easing: cubic-bezier(0.77, 0, 0.175, 1);
    --border-radius-xl: 24px;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(22, 34, 122, 0.08);
    --shadow-hover: 0 20px 40px rgba(22, 34, 122, 0.15);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
}


.main-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}





.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--smooth-easing);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 40, 29, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 40, 29, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--smooth-easing);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--smooth-easing);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--smooth-easing);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--smooth-easing), visibility 1.2s;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 20, 74, 0.9) 0%, rgba(13, 20, 74, 0.5) 100%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--smooth-easing) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slide-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-line {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-line.active {
    background-color: var(--accent);
    width: 60px;
}

.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.licencias-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image .img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(22, 34, 122, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 40, 29, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: -1;
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(22, 34, 122, 0.15), inset 0 0 0 1px rgba(212, 40, 29, 0.3);
    background: #ffffff;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 40, 29, 0.1), rgba(212, 40, 29, 0.02));
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0 0 1px rgba(212, 40, 29, 0.1);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(5deg) translateY(-5px);
    box-shadow: 0 15px 25px rgba(212, 40, 29, 0.3);
}

.service-title {
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.objectives-section {
    background-color: var(--primary);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.objectives-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.obj-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.obj-intro {
    position: sticky;
    top: 100px;
}

.obj-intro h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.obj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.obj-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.obj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
}

.obj-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.obj-card:hover::before {
    left: 200%;
}

.obj-icon {
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
    padding: 10px;
    background: rgba(212, 40, 29, 0.15);
    border-radius: 12px;
}

.obj-card-title {
    margin: 0 0 10px 0;
    color: #fff;
}

.obj-text {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.obj-text strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
    margin-top: 8px;
}

.mvv-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.mvv-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mvv-card {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px -12px rgba(22, 34, 122, 0.15),
        0 18px 36px -18px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 34, 122, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform-style: preserve-3d;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #4a65ff);
    z-index: 2;
}

.mvv-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent), #ff6b6b);
}

.mvv-card.full-width {
    grid-column: 1 / -1;
}

.mvv-card.full-width::before {
    background: linear-gradient(90deg, #2282e4, #00d2ff);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(22, 34, 122, 0.15),
        0 15px 30px -15px rgba(0, 0, 0, 0.1);
}

.mvv-card-header,
.mvv-card-header2,
.mvv-card-header3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mvv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(22, 34, 122, 0.1);
    margin-right: 5px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mvv-card:hover .mvv-card-icon {
    transform: scale(1.05);
}

.mvv-card-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.mvv-card-header2 h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0;
}

.mvv-card-header3 h3 {
    font-size: 1.8rem;
    color: #2282e4;
    margin: 0;
}

.mvv-card p {
    color: var(--text-muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.value-item svg {
    color: #2282e4;
    flex-shrink: 0;
    margin-top: 3px;
}

.value-item div strong {
    display: block;
    color: #2282e4;
    margin-bottom: 5px;
}

.value-item div span {
    color: var(--text-muted);
}

.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.team-member {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(22, 34, 122, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 60px rgba(22, 34, 122, 0.15);
}

.team-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-info h3 {
    color: var(--primary);
    margin: 0 0 10px 0;
}

.team-info span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.team-toggle-btn {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.4s var(--smooth-easing);
    box-shadow: 0 4px 15px rgba(212, 40, 29, 0.3);
}

.team-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(212, 40, 29, 0.4);
}

.team-toggle-btn.active {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(22, 34, 122, 0.3);
}

.team-toggle-btn.active:hover {
    background: var(--primary-light);
}

.team-toggle-btn svg {
    transition: transform 0.4s var(--smooth-easing);
}

.team-toggle-btn.active svg {
    transform: rotate(45deg);
}

.team-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    transition: all 0.5s var(--smooth-easing);
}

.team-member.expanded .team-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.team-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.team-details li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.team-details li:last-child {
    margin-bottom: 0;
}

.team-details li strong {
    color: var(--primary);
    display: inline-block;
    width: 200px;
}

.contact-section {
    background-color: var(--bg-light);
    padding-bottom: 100px;
}

.contact-header-full {
    background-image: url('../img/fondo_colores.webp');
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    padding: 70px 0 110px 0;
    text-align: center;
    color: #fff;
    animation: parallaxBgZoom 20s linear infinite alternate;
}

@keyframes parallaxBgZoom {
    0% {
        background-size: 120%;
    }

    100% {
        background-size: 140%;
    }
}

@media (max-width: 768px) {
    @keyframes parallaxBgZoom {
        0% {
            background-size: auto 120%;
        }

        100% {
            background-size: auto 140%;
        }
    }
}

.contact-header-full h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-header-full p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-pill svg {
    color: var(--accent);
}

.info-pill span {
    text-align: left;
    color: var(--primary);
}

.modern-form-wrapper {
    max-width: 800px;
    margin: -60px auto 0 auto;
    background: #fff;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 50px rgba(22, 34, 122, 0.1);
    padding: 50px;
    position: relative;
    z-index: 10;
}

.modern-form-wrapper h3 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: -10px;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.modern-form .form-control {
    width: 100%;
    padding: 22px 20px 10px 20px;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    color: var(--text-main);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-form .form-control:focus {
    outline: none;
    border-color: rgba(212, 40, 29, 0.5);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(212, 40, 29, 0.08);
}

.modern-form .floating-label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.2s ease all;
}

.modern-form .form-control:focus~.floating-label,
.modern-form .form-control:not(:placeholder-shown)~.floating-label {
    top: 6px;
    color: var(--accent);
}

.licencias-section {
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.licencias-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbff 100%);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(22, 34, 122, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 34, 122, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.licencias-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #ff6b6b);
    z-index: 2;
}

.licencias-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.licencias-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #4a65ff);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(22, 34, 122, 0.2);
    flex-shrink: 0;
}

.licencias-info-title {
    color: var(--primary);
    margin: 0;
    font-size: 1.5rem;
}

.licencias-info-lead {
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 15px;
}

.licencias-info-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.licencias-btn-outline {
    margin-top: 25px;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.licencias-btn-outline:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(22, 34, 122, 0.2);
    transform: translateY(-3px);
}

.licencias-docs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.licencias-doc-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 34, 122, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(22, 34, 122, 0.05);
    display: flex;
    align-items: center;
    padding: 25px 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.licencias-doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: all 0.4s ease;
    z-index: 2;
}

.licencias-doc-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, transparent, rgba(22, 34, 122, 0.03));
    transition: width 0.4s ease;
    z-index: -1;
}

.licencias-doc-card>* {
    position: relative;
    z-index: 1;
}

.licencias-doc-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(22, 34, 122, 0.12);
    border-color: rgba(22, 34, 122, 0.15);
    background: #ffffff;
}

.licencias-doc-card:hover::before {
    background: var(--accent);
    width: 6px;
}

.licencias-doc-card:hover::after {
    width: 100%;
}

.licencias-doc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(22, 34, 122, 0.05);
    color: var(--primary);
    border-radius: 16px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.licencias-doc-card:hover .licencias-doc-icon {
    background: rgba(212, 40, 29, 0.08);
    color: var(--accent);
    transform: scale(1.1);
}

.licencias-doc-content {
    flex-grow: 1;
}

.licencias-doc-title {
    color: var(--primary);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.licencias-doc-desc {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.licencias-doc-arrow {
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.licencias-doc-card:hover .licencias-doc-arrow {
    color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
}

.modern-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

@media (max-width: 1024px) {

    .about-grid,
    .licencias-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .obj-layout {
        grid-template-columns: 1fr;
    }

    .obj-intro {
        position: static;
        margin-bottom: 40px;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    @media (max-width: 768px) {
        .team-grid {
            grid-template-columns: 1fr;
        }

        .obj-grid {
            grid-template-columns: 1fr;
        }

        .mvv-cards-container {
            grid-template-columns: 1fr;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }



        .contact-header-full {
            padding: 50px 20px 80px 20px;
        }

        .contact-info-row {
            flex-direction: column;
            gap: 15px;
        }

        .info-pill {
            justify-content: center;
            width: 100%;
            box-sizing: border-box;
        }

        .modern-form-wrapper {
            padding: 30px 20px;
            margin-top: -40px;
            width: 90%;
        }

        .modern-form .form-row {
            grid-template-columns: 1fr;
            gap: 0;
            margin-bottom: 0;
        }

        .hero-section {
            height: 100vh;
            min-height: 500px;
        }

        .slide-content {
            text-align: center;
            padding-top: 40px;
        }

        .slider-controls {
            bottom: 60px;
        }

        .services-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 24px;
        }

        .slide-title {
            font-size: 2rem;
            margin-top: 0px;
        }

        .service-card {
            padding: 30px 20px;
        }

        .mvv-card {
            padding: 30px 20px;
        }

        .licencias-doc-card {
            padding: 20px;
        }

        .obj-card {
            padding: 20px;
        }

    }
}