/* Reset and base styles */
* {
    font-family: var(--ff-primary);
    box-sizing: border-box;
}

li, a {
    font-family: var(--ff-primary);
    cursor: pointer;
    text-decoration: none;
}

body {
    background-color: var(--color-secondary-white);
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}

/* Responsive reset */
@media screen and (max-width: 900px) {
    .not_responsive {
        display: none;
    }
}

/* Variables */
:root {
    --color-primary-blue: #047da8;
    --color-primary-blue-dark: #005472;
    --color-primary-blue-light: #caeffd;
    --color-secondary-orange: #f79225;
    --color-secondary-orange-light: #ffc588;

    --color-standard-black: #111;
    --color-standard-white: #eee;
    --color-standard-white-dark: #DDD;

    --ff-primary: 'Avenir', sans-serif;

    --br-small: 10px;
    --br-medium: 15px;
    --br-large: 20px;
    --br-full: 40px;
}

/* NavBar - Mejorado */
.nav_bar {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary-blue-dark) 0%, var(--color-primary-blue) 100%);
    box-shadow: 0 4px 20px rgba(4, 125, 168, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav_bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="navPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23navPattern)"/></svg>') repeat;
    pointer-events: none;
}

.nav_bar_content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nav_brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.nav_brand img {
    width: 120px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav_brand:hover img {
    transform: scale(1.05);
}

.brand_text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-standard-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav_bar_links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-standard-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: var(--br-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav_link::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.5s ease;
}

.nav_link:hover::before {
    left: 100%;
}

.nav_link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav_link svg {
    transition: all 0.3s ease;
}

.nav_link:hover svg {
    transform: scale(1.1);
    color: var(--color-secondary-orange);
}

.nav_cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta_phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary-orange-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: var(--br-small);
    transition: all 0.3s ease;
}

.cta_phone:hover {
    color: var(--color-secondary-orange);
    background: rgba(255, 255, 255, 0.1);
}

.cta_button {
    background: linear-gradient(135deg, var(--color-secondary-orange), #ff6b35);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: var(--br-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 146, 37, 0.4);
    position: relative;
    overflow: hidden;
}

.cta_button::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.5s ease;
}

.cta_button:hover::before {
    left: 100%;
}

.cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 146, 37, 0.6);
}

/* Mobile Menu */
.mobile_menu_btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile_menu_btn span {
    width: 25px;
    height: 3px;
    background: var(--color-standard-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary-blue-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile_menu a {
    color: var(--color-standard-white);
    text-decoration: none;
    padding: 1rem;
    border-radius: var(--br-small);
    transition: all 0.3s ease;
    text-align: center;
}

.mobile_menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile_phone {
    color: var(--color-secondary-orange-light) !important;
    font-weight: 600;
}

.mobile_cta {
    background: var(--color-secondary-orange) !important;
    color: white !important;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav_bar_content {
        padding: 1rem;
    }
    
    .brand_text {
        display: none;
    }
    
    .nav_bar_links {
        gap: 0.3rem;
    }
    
    .nav_link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .cta_button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .nav_bar_links,
    .nav_cta {
        display: none;
    }
    
    .mobile_menu_btn {
        display: flex;
    }
    
    .mobile_menu.active {
        display: flex;
    }
    
    .nav_bar_content {
        padding: 0.8rem 1rem;
    }
    
    .nav_brand img {
        width: 100px;
    }
}

@media only screen and (max-width: 480px) {
    .quote_space {
        padding: 1.5rem 1rem;
    }

    .quote_text {
        font-size: 1.2rem;
    }

    .trust_number {
        font-size: 1.25rem;
    }

    .author_badge {
        padding: 0.5rem 1rem;
    }

    .author_badge span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .nav_brand img {
        width: 80px;
    }
}

.main_banner {
    box-sizing: border-box;
    width: 100%;
    height: 600px;
    max-width: 1380px;
    border-radius: var(--br-large);
    margin: 3rem auto;
}

.main_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--br-large);
    border: 1px solid var(--color-standard-black);
}

.main_banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-wrap: wrap;
    text-align: center;
    transform: translateY(-385px);
    color: var(--color-standard-white);
}

/* Quote Space Styles */
.quote_space {
    position: relative;
    width: 90%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.quote_space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary-blue) 20%, 
        var(--color-secondary-orange) 50%, 
        var(--color-primary-blue) 80%, 
        transparent 100%);
    animation: quoteBorder 4s ease-in-out infinite;
}

.quote_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.quote_pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: rotatePattern 20s linear infinite;
}

.quote_pattern.pattern_1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.quote_pattern.pattern_2 {
    top: 20%;
    right: 8%;
    animation-delay: 7s;
}

.quote_pattern.pattern_3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 14s;
}

.floating_quote_element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 50%;
    animation: floatQuote 6s ease-in-out infinite;
}

.floating_quote_element.element_1 {
    top: 25%;
    right: 15%;
    animation-delay: 0s;
}

.floating_quote_element.element_2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.quote_container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.quote_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 15px 30px rgba(59, 130, 246, 0.3),
        0 5px 10px rgba(59, 130, 246, 0.2);
    animation: pulseIcon 3s ease-in-out infinite;
}

.quote_content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
}

.quote_marks {
    color: var(--color-secondary-orange);
    opacity: 0.6;
    flex-shrink: 0;
}

.quote_marks_open {
    transform: rotate(180deg);
}

.quote_text {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-standard-black);
    margin: 0;
    position: relative;
}

.quote_text::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 2px;
}

.highlight_word {
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.quote_author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.author_badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.badge_icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author_badge span {
    font-weight: 600;
    color: var(--color-primary-blue);
    font-size: 1rem;
}

.trust_indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trust_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.trust_number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.trust_label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

@keyframes quoteBorder {
    0%, 100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--color-primary-blue) 20%, 
            var(--color-secondary-orange) 50%, 
            var(--color-primary-blue) 80%, 
            transparent 100%);
    }
    50% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--color-secondary-orange) 20%, 
            var(--color-primary-blue) 50%, 
            var(--color-secondary-orange) 80%, 
            transparent 100%);
    }
}

@keyframes rotatePattern {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes floatQuote {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 1;
    }
}

@keyframes pulseIcon {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 15px 30px rgba(59, 130, 246, 0.3),
            0 5px 10px rgba(59, 130, 246, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 20px 40px rgba(59, 130, 246, 0.4),
            0 8px 16px rgba(59, 130, 246, 0.3);
    }
}

.quote_space p {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Go To Landing Styles */
.go_to_landing {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #047da8 0%, #0a5a7a 50%, #1e3a8a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.go_to_landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.landing_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.landing_text {
    margin-bottom: 2rem;
    color: white;
}

.landing_text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing_text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.landing_button_container {
    position: relative;
}

.landing_button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.landing_button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.landing_button img {
    width: 600px;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.button_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(4, 125, 168, 0.9), rgba(30, 58, 138, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.landing_button:hover .button_overlay {
    opacity: 1;
}

.landing_button:hover img {
    filter: blur(2px) brightness(0.7);
}

.button_overlay svg {
    transition: transform 0.3s ease;
}

.landing_button:hover .button_overlay svg {
    transform: translateX(5px);
}

.landing_decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating_element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element_1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element_2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element_3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Commented Images Styles */
.commented_image_container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(248, 250, 252, 0.8) 100%);
    border-radius: 2rem;
    overflow: hidden;
}

.commented_image_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary-blue) 20%, 
        var(--color-secondary-orange) 50%, 
        var(--color-primary-blue) 80%, 
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
}

.section_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating_particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.floating_particle.particle_1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating_particle.particle_2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.floating_particle.particle_3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating_particle.particle_4 {
    bottom: 30%;
    right: 25%;
    animation-delay: 6s;
}

.commented_image {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 320px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.commented_image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.commented_image:hover::before {
    left: 100%;
}

.image_wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(249, 115, 22, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.commented_image:hover .image_overlay {
    opacity: 1;
}

.overlay_icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.commented_image:hover .overlay_icon {
    transform: scale(1);
}

.commented_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.commented_image:hover img {
    transform: scale(1.05);
}

.image_badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-primary-blue-dark));
    color: var(--color-standard-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    z-index: 3;
}

.content_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.step_indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step_number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-secondary-orange), #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.step_line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, 
        var(--color-secondary-orange), 
        rgba(249, 115, 22, 0.3));
    margin-top: 0.5rem;
}

.gradient_title {
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.commented_image p {
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
    line-height: 1.6;
    color: var(--color-standard-black);
}

.feature_tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(90deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-25px) translateX(-5px) rotate(180deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-10px) translateX(-15px) rotate(270deg); 
        opacity: 1;
    }
}

/* Message Space Styles */
.message_space {
    position: relative;
    width: 90%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.message_space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-primary-blue) 0%, 
        var(--color-secondary-orange) 50%, 
        var(--color-primary-blue) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.message_space_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating_shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(4, 125, 168, 0.1), 
        rgba(247, 146, 37, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating_shape.shape_1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating_shape.shape_2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.floating_shape.shape_3 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

.message_space_content {
    position: relative;
    z-index: 2;
    flex: 2;
    width: 60%;
    padding: 2rem;
}

.content_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 16px rgba(4, 125, 168, 0.3);
}

.availability_badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pulse_dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.gradient_title {
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone_container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(4, 125, 168, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(4, 125, 168, 0.1);
}

.phone_icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-primary-blue-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone_number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin: 0;
}

.features_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature_icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature_content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-standard-black);
}

.feature_content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.message_space_image {
    position: relative;
    z-index: 2;
    width: 40%;
    flex: 1;
    padding: 2rem;
}

.image_container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(4, 125, 168, 0.1) 0%, 
        rgba(247, 146, 37, 0.1) 100%);
    z-index: 1;
}

.message_space_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image_container:hover img {
    transform: scale(1.05);
}

.image_badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.image_badge span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    line-height: 1;
}

.image_badge small {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media only screen and (max-width: 480px) {
    .commented_image_container {
        padding: 1rem;
    }

    .commented_image {
        padding: 1rem;
    }

    .gradient_title {
        font-size: 1.1rem;
    }

    .commented_image img {
        height: 160px;
    }
}

/* Services Section */
.services_section {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    padding: 4rem 1rem;
    color: var(--color-standard-white);
}

.services_header {
    text-align: center;
    margin-bottom: 3rem;
}

.services_header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-standard-white);
}

.services_grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--br-medium);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service_card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service_icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.service_card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--color-standard-white);
}

.service_card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.services_additional {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.additional_service {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--br-small);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional_service:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.additional_service h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-secondary-orange);
}

.additional_service p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Space Styles - Mejorado */
.stats_space {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary-blue-light) 0%, var(--color-secondary-orange-light) 100%);
    padding: 4rem 1rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats_space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.stats_container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--br-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(4, 125, 168, 0.3);
}

.stat_number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary-blue-dark);
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat_title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-blue-dark);
    margin: 0 0 0.5rem;
}

.stat_description {
    font-size: 0.9rem;
    color: var(--color-standard-black);
    opacity: 0.7;
    margin: 0;
}

/* Footer Styles - Mejorado */
.footer {
    background: linear-gradient(135deg, var(--color-primary-blue-dark) 0%, var(--color-primary-blue) 100%);
    color: var(--color-standard-white);
    padding: 3rem 1rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 50,25 25,50 0,25" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>') repeat;
    pointer-events: none;
}

.footer_content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer_section h3,
.footer_section h4 {
    color: var(--color-secondary-orange);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer_section h3 {
    font-size: 1.8rem;
}

.footer_section h4 {
    font-size: 1.2rem;
}

.footer_brand {
    text-align: center;
}

.footer_brand img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer_tagline {
    font-style: italic;
    color: var(--color-secondary-orange-light);
    margin-top: 0.5rem;
}

.contact_item,
.hours_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: var(--br-small);
    transition: background-color 0.3s ease;
}

.contact_item:hover,
.hours_item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact_item svg,
.hours_item svg {
    color: var(--color-secondary-orange);
    flex-shrink: 0;
}

.hours_item {
    justify-content: space-between;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--color-secondary-orange-light);
}

.footer_link {
    display: block;
    color: var(--color-standard-white);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--br-small);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.footer_link:hover {
    background-color: var(--color-secondary-orange);
    color: var(--color-primary-blue-dark);
    transform: translateX(5px);
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer_social {
    display: flex;
    gap: 1rem;
}

.social_link {
    width: 40px;
    height: 40px;
    background: var(--color-secondary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social_link:hover {
    background: var(--color-standard-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer_copyright {
    margin: 0;
    color: var(--color-standard-white-dark);
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact_form {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.contact_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #047da8, #1e3a8a, #047da8);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

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

.form_container {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.form_header {
    text-align: center;
    margin-bottom: 3rem;
}

.form_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #047da8, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(4, 125, 168, 0.3);
}

.form_header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #047da8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form_header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern_form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input_group {
    display: flex;
    flex-direction: column;
}

.input_group label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input_container {
    position: relative;
    display: flex;
    align-items: center;
}

.input_container svg {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    z-index: 1;
    transition: color 0.3s ease;
}

.textarea_container svg {
    top: 1rem;
    align-self: flex-start;
}

.input_container input,
.input_container textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.input_container textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.input_container input:focus,
.input_container textarea:focus {
    border-color: #047da8;
    box-shadow: 0 0 0 3px rgba(4, 125, 168, 0.1);
    transform: translateY(-2px);
}

.input_container input:focus + svg,
.input_container textarea:focus + svg {
    color: #047da8;
}

.input_container input::placeholder,
.input_container textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.submit_button {
    background: linear-gradient(135deg, #047da8, #1e3a8a);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

.submit_button::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.5s ease;
}

.submit_button:hover::before {
    left: 100%;
}

.submit_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(4, 125, 168, 0.4);
}

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

.submit_button svg {
    transition: transform 0.3s ease;
}

.submit_button:hover svg {
    transform: translateX(3px);
}

.form_decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration_element {
    position: absolute;
    border-radius: 50%;
    background: rgba(4, 125, 168, 0.05);
    animation: float 8s ease-in-out infinite;
}

.element_1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element_2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

.element_3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--color-secondary-orange-light);
    color: var(--color-standard-white);
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    border-top: 2px solid var(--color-primary-blue);
}

.footer img {
    width: 200px;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer h3 {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-blue);
    width: fit-content;
    margin: 0 auto;
}

.footer p {
    font-size: 1.2rem;
    margin: 0;
}

.footer > a {
    color: var(--color-primary-blue-dark);
    display: block;
    width: fit-content;
    margin: 1rem auto;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--br-small);
    transition: all 0.3s ease-in-out;
}

.footer > a:hover {
    color: var(--color-standard-black);
    scale: 1.1;
    background-color: var(--color-primary-blue-light);
}

/* Side Contacts */
.side-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-contact {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.gmail-contact {
    background: linear-gradient(135deg, var(--color-secondary-orange), var(--color-primary-blue));
}

.contact-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.contact-icon {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-standard-black);
    color: var(--color-standard-white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-standard-black);
}

.contact-item:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Carousel Title Styles */
.carousel_title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.carousel_title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 2px;
}

/* Rotated Corner Element */
.rotated_in_corner {
    display: inline-block;
    transform: rotate(-8deg);
    background: linear-gradient(135deg, var(--color-secondary-orange), #ff6b35);
    color: var(--color-primary-blue-light);
    padding: 0.5rem 1rem;
    border-radius: var(--br-medium);
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(247, 146, 37, 0.4);
    animation: bounceRotate 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.rotated_in_corner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-secondary-orange), #ff6b35);
    border-radius: var(--br-medium);
    z-index: -1;
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Offer Instructions Styles */
.offer_instructions {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-standard-black);
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--br-medium);
    border: 1px solid rgba(4, 125, 168, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    /* Add vertical centering */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px; /* Minimum height for proper vertical centering */
}

.offer_instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary-blue) 20%, 
        var(--color-secondary-orange) 50%, 
        var(--color-primary-blue) 80%, 
        transparent 100%);
}

/* Highlight Link Styles */
.highlight_link {
    color: var(--color-primary-blue);
    text-decoration: none;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    margin: 0 .5rem;
    border-radius: var(--br-small);
    background: linear-gradient(135deg, 
        rgba(4, 125, 168, 0.1) 0%, 
        rgba(247, 146, 37, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    overflow: hidden;
}

.highlight_link::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.5s ease;
}

.highlight_link:hover::before {
    left: 100%;
}

.highlight_link:hover {
    color: white;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-secondary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 125, 168, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight_link:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(4, 125, 168, 0.2);
}

.highlight_word {
    margin-right: 1rem;
}

/* Offer Carousel Styles */
.offer_carousel {
    position: relative;
    width: 100%;
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(248, 250, 252, 0.8) 100%);
    overflow: hidden;
}

.offer_carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary-blue) 20%, 
        var(--color-secondary-orange) 50%, 
        var(--color-primary-blue) 80%, 
        transparent 100%);
    animation: carouselBorder 4s ease-in-out infinite;
}

.carousel_container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.carousel_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating_carousel_particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--color-primary-blue), var(--color-secondary-orange));
    border-radius: 50%;
    animation: floatCarouselParticle 6s ease-in-out infinite;
}

.floating_carousel_particle.particle_1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating_carousel_particle.particle_2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating_carousel_particle.particle_3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.carousel_wrapper {
    position: relative;
    border-radius: var(--br-large);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.carousel_track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel_slide {
    min-width: 100%;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.carousel_slide.active {
    opacity: 1;
}

.slide_image_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.carousel_slide.active .slide_image_wrapper img {
    transform: scale(1.02);
}

.slide_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay_gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(4, 125, 168, 0.1) 0%, 
        rgba(247, 146, 37, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel_slide.active .overlay_gradient {
    opacity: 1;
}

/* Navigation Controls */
.carousel_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel_nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel_nav svg {
    color: var(--color-primary-blue);
    transition: color 0.3s ease;
}

.carousel_nav:hover svg {
    color: var(--color-secondary-orange);
}

.carousel_prev {
    left: 20px;
}

.carousel_next {
    right: 20px;
}

/* Indicators */
.carousel_indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}

.indicator {
    width: 12px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-blue);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.indicator.active::before {
    transform: scale(1);
}

.indicator:hover {
    border-color: var(--color-secondary-orange);
    transform: scale(1.2);
}

.indicator.active {
    border-color: var(--color-primary-blue);
}

/* Estilos acordeón */
.accordion {
    width: 100%;
    max-width: 600px;
    margin: auto;
    border: 0px solid #fff;
    border-radius: 5px;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #fff;
    text-align: center;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    background-color: #ffffff00;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.accordion-header:hover {
    background-color: #ffffff00;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 15px;
    background-color: #ffffff00;
}
.accordion-content p {
    margin: 15px 0;
    padding: 0;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 100%; /* Ajusta este valor según el contenido */
    overflow: visible;
}
input[type="checkbox"]:checked + label .accordion-header {
    background-color: #ffffff00;
}
h1.textseo {
    font-size: 20px;
    text-transform: none;
}
h2.textseo {
    font-size: 18px;
    text-transform: none;
}
h3.textseo {
    font-size: 16px;
    text-transform: none;
}
h4.textseo {
    font-size: 16px;
    text-transform: none;
}
p.textseo {
    font-size: 16px;
}
/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .accordion {
        max-width: 100%;
    }
}

/* Animations */
@keyframes carouselBorder {
    0%, 100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--color-primary-blue) 20%, 
            var(--color-secondary-orange) 50%, 
            var(--color-primary-blue) 80%, 
            transparent 100%);
    }
    50% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--color-secondary-orange) 20%, 
            var(--color-primary-blue) 50%, 
            var(--color-secondary-orange) 80%, 
            transparent 100%);
    }
}




@keyframes floatCarouselParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) translateX(8px);
        opacity: 1;
    }
}

@keyframes bounceRotate {
    0%, 100% {
        transform: rotate(-8deg) scale(1);
    }
    50% {
        transform: rotate(-6deg) scale(1.05);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Media Queries */
@media screen and (max-width: 1280px) {
    .main_banner {
        width: 90%;
    }

    .main_banner h1 {
        font-size: 2.5rem;
        transform: translateY(-350px);
    }
}

@media screen and (max-width: 1000px) {
    .main_banner {
        height: 400px;
    }

    .main_banner h1 {
        font-size: 2rem;
        font-weight: 900;
        transform: translateY(-250px);
    }

    .stats_space {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .commented_image_container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .carousel_container {
        width: 100%;
        height: 60%;
    }

    .commented_image {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
    }

    .gradient_title {
        font-size: 1.25rem;
    }

    .content_header {
        gap: 0.75rem;
    }

    .step_line {
        height: 30px;
    }

    .floating_particle {
        display: none;
    }

    .commented_image img {
        height: 180px;
    }

    .contact_form {
        margin: 2rem 0rem;
        border-radius: 16px;
    }
    
    .form_container {
        padding: 2rem 1.5rem;
    }
    
    .form_header h2 {
        font-size: 2rem;
    }
    
    .form_row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern_form {
        gap: 1.5rem;
    }
    
    .submit_button {
        width: 100%;
    }
    
    .decoration_element {
        display: none;
    }

    .message_space {
        flex-direction: column;
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .message_space_content {
        width: 100%;
        padding: 1rem;
    }

    .gradient_title {
        font-size: 1.5rem;
    }

    .phone_number {
        font-size: 1.25rem;
    }

    .features_list {
        gap: 1rem;
    }

    .feature_item {
        padding: 0.75rem;
    }

    .message_space_image {
        width: 100%;
        padding: 1rem;
    }

    .floating_shape {
        display: none;
    }

    .quote_space {
        width: 95%;
        margin: 2rem auto;
        padding: 2rem 1.5rem;
    }

    .quote_icon {
        width: 60px;
        height: 60px;
    }

    .quote_content {
        flex-direction: column;
        gap: 1rem;
    }

    .quote_marks {
        display: none;
    }

    .quote_text {
        font-size: 1.4rem;
    }

    .trust_indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .trust_item {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 200px;
    }

    .quote_pattern {
        display: none;
    }

    .quote_space p {
        font-size: 1.2rem;
    }

    .side-contacts {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .contact-item {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon {
    width: 100%;
    height: 100%;
    }
    
    .contact-tooltip {
        font-size: 12px;
        padding: 6px 10px;
        right: 60px;
    }

    .stats_space {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .stat_number {
        font-size: 2rem;
    }

    .stat_title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .stats_space > div {
        width: 100%;
        height: 100%;
        padding: 1rem;
    }

    .go_to_landing {
        padding: 3rem 1rem;
        margin: 1rem 0;
    }
    
    .landing_text h2 {
        font-size: 2rem;
    }
    
    .landing_text p {
        font-size: 1rem;
    }
    
    .landing_button img {
        width: 100%;
        max-width: 400px;
    }
    
    .button_overlay {
        font-size: 1.1rem;
    }
    
    .floating_element {
        display: none;
    }
    
    .services_section {
        padding: 3rem 1rem;
    }
    
    .services_header h2 {
        font-size: 2rem;
    }
    
    .services_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service_card {
        padding: 1.5rem;
    }
    
    .services_additional {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .additional_service {
        padding: 1rem;
    }
    .stats_container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .stat_number {
        font-size: 2.5rem;
    }
    
    .footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact_item,
    .hours_item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .go_to_landing {
        padding: 3rem 1rem;
        margin: 1rem 0;
    }
    
    .landing_text h2 {
        font-size: 1.8rem;
    }
    
    .button_overlay {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .side-contacts {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .contact-item {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon {
    width: 100%;
    height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .carousel_title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rotated_in_corner {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        transform: rotate(-5deg);
    }
    
    .offer_instructions {
        font-size: 1rem;
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .highlight_link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .offer_carousel {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .slide_image_wrapper {
        height: 250px;
    }
    
    .carousel_nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel_prev {
        left: 10px;
    }
    
    .carousel_next {
        right: 10px;
    }
    
    .carousel_indicators {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .carousel_title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .carousel_title::before {
        width: 60px;
        height: 3px;
    }
    
    .rotated_in_corner {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        transform: rotate(-3deg);
    }
    
    .offer_instructions {
        font-size: 0.95rem;
        padding: 0.8rem;
        line-height: 1.5;
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }
    
    .highlight_link {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .slide_image_wrapper {
        height: 200px;
    }
    
    .carousel_nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel_nav svg {
        width: 18px;
        height: 18px;
    }
    
    .form_header h2 {
        font-size: 1.8rem;
    }
    
    .form_header p {
        font-size: 1rem;
    }
    
    .input_container input,
    .input_container textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .input_container svg {
        left: 0.8rem;
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 468px) {
    .main_banner {
        height: 300px;
    }

    .main_banner h1 {
        font-size: 1.5rem;
        font-weight: 900;
        transform: translateY(-200px);
    }
    
    .services_header h2 {
        font-size: 1.8rem;
    }
    
    .services_additional {
        grid-template-columns: 1fr;
    }
    
    .service_card h3 {
        font-size: 1.2rem;
    }
}