<style> :root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #ffd700;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --text-color: #333;
    --nav-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --primary-color-rgb: 44, 62, 80;
    --secondary-color-rgb: 52, 152, 219;
    --accent-color-rgb: 255, 215, 0
}

.cotizador-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem
}

.cotizador-form {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgb(0 0 0 / .08);
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: .75rem;
    color: var(--primary-color);
    font-size: 1rem
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition)
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgb(8 66 152 / .1)
}

.cotizar-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px
}

.cotizar-btn:hover {
    background: #06367d;
    transform: translateY(-2px)
}

.loading-state {
    display: none;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--primary-color)
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.resultado-container {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgb(0 0 0 / .08);
    margin-bottom: 2rem
}

.resultado-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: .75rem;
    font-weight: 600
}

.resultado-precio {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700
}

.resultado-nota {
    color: #6c757d;
    font-size: .9rem;
    line-height: 1.6
}

.whatsapp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition)
}

.whatsapp-link:hover {
    color: #06367d;
    text-decoration: underline
}

.mapa-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgb(0 0 0 / .08)
}

@media (max-width:768px) {
    .cotizador-container {
        padding: 1rem
    }
    .cotizador-form {
        padding: 1.5rem
    }
    .form-input {
        padding: .875rem
    }
    .cotizar-btn {
        padding: 1rem;
        font-size: 1rem
    }
}

footer {
    --footer-bg: var(--nav-bg);
    --footer-accent: var(--accent-color);
    --footer-text: rgba(255, 255, 255, 0.95);
    --footer-border: rgba(255, 255, 255, 0.15);
    --footer-gap: clamp(1.5rem, 4vw, 4rem);
    --footer-radius: 2rem;
    background: var(--footer-bg) !important;
    border-radius: var(--footer-radius) var(--footer-radius) 0 0 !important;
    color: var(--footer-text);
    position: relative;
    box-shadow: 0 -4px 20px rgb(0 0 0 / .1)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--footer-gap);
    padding: 0 2rem 3rem;
    border-bottom: 1px solid var(--footer-border)
}

.footer-logo {
    display: grid;
    place-content: start;
    gap: 1.5rem;
    text-align: center
}

.footer-logo img {
    max-width: min(200px, 100%);
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgb(0 0 0 / .2));
    aspect-ratio: 16/9;
    object-fit: contain;
    transition: transform .4s var(--transition);
    margin: 0 auto
}

.footer-logo:hover img {
    transform: scale(1.05)
}

.footer-logo h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    line-height: 1.3;
    color: var(--footer-accent);
    text-shadow: 0 2px 4px rgb(0 0 0 / .2)
}

.footer-logo p {
    opacity: .9;
    line-height: 1.6;
    max-width: 35ch;
    font-size: clamp(.95rem, 1.2vw, 1.1rem)
}

.footer-contact,
.footer-nav {
    display: grid;
    align-content: start;
    gap: 1.5rem;
    position: relative
}

.footer-contact h4,
.footer-nav h4 {
    font-size: clamp(1.3rem, 1.7vw, 1.5rem);
    position: relative;
    width: fit-content;
    color: var(--footer-accent);
    padding-bottom: .8rem
}

.footer-contact h4::after,
.footer-nav h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .8rem
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .6rem 1rem;
    border-radius: .5rem;
    transition: var(--transition);
    width: fit-content
}

.footer-nav a:where(:hover, :focus-visible) {
    color: var(--footer-accent);
    background: rgb(255 255 255 / .05);
    transform: translateX(.8rem)
}

.footer-nav .dropdown-content {
    padding-left: 1.5rem;
    margin-top: .8rem;
    border-left: 2px solid var(--footer-border)
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: .8rem;
    background: rgb(255 255 255 / .03);
    border-radius: .5rem;
    transition: var(--transition)
}

.footer-contact p:hover {
    background: rgb(255 255 255 / .05)
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px dotted #fff0
}

.footer-contact a:where(:hover, :focus-visible) {
    color: var(--footer-accent);
    border-bottom-color: currentColor
}

.footer-bottom {
    padding: 2rem;
    text-align: center;
    font-size: clamp(.85rem, 1.5vw, .95rem);
    opacity: .9
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 2rem
}

.social-links a {
    color: inherit !important;
    font-size: 1.8rem;
    transition: var(--transition);
    padding: .5rem;
    border-radius: 50%
}

.social-links a:where(:hover, :focus-visible) {
    color: var(--footer-accent) !important;
    transform: translateY(-.3rem) scale(1.1);
    background: rgb(255 255 255 / .05)
}

@media (max-width:768px) {
    footer {
        border-radius: 1.5rem 1.5rem 0 0 !important;
        padding: 3rem 0 0
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1.5rem 2rem;
        gap: 2.5rem
    }
    .footer-logo {
        place-content: center;
        text-align: center
    }
    .footer-logo p {
        max-width: unset;
        margin: 0 auto
    }
    .footer-contact h4,
    .footer-nav h4 {
        margin-inline: auto
    }
    .footer-contact h4::after,
    .footer-nav h4::after {
        left: 50%;
        transform: translateX(-50%)
    }
    .footer-nav ul {
        justify-content: center
    }
    .footer-nav a {
        width: 100%;
        justify-content: center;
        padding: .8rem
    }
    .footer-nav .dropdown-content {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--footer-border)
    }
    .social-links a {
        font-size: 1.6rem
    }
}

@media (max-width:480px) {
    .footer-logo img {
        max-width: 160px
    }
    .footer-contact p {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center
    }
}

.main-nav {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow)
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform .3s ease
}

.nav-logo:hover {
    transform: translateX(5px)
}

.nav-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / .2))
}

.logo-text h1 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: .25rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgb(0 0 0 / .2)
}

.logo-text p {
    color: rgb(255 255 255 / .9);
    font-size: .9rem
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
    list-style: none
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative
}

.nav-menu a:hover {
    background: rgb(255 255 255 / .1)
}

.nav-menu a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center
}

.dropdown {
    position: relative
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-content a {
    color: #ffc107;
    padding: .75rem 1.5rem;
    display: block;
    transition: var(--transition)
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    padding-left: 2rem
}

.mobile-nav-toggle {
    display: none;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: .5rem;
    transition: var(--transition)
}

.mobile-nav-toggle:hover {
    transform: rotate(90deg)
}

@media (max-width:768px) {
    .nav-container {
        padding: 1rem
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--nav-bg);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        transition: right .3s ease;
        overflow-y: auto;
        padding: 1rem
    }
    .nav-menu.active {
        right: 0
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 0
    }
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgb(255 255 255 / .1)
    }
    .dropdown-content {
        position: static;
        background: rgb(255 255 255 / .05);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease
    }
    .dropdown.active .dropdown-content {
        max-height: 500px
    }
    .mobile-nav-toggle {
        display: block
    }
    .nav-logo img {
        height: 50px
    }
    .logo-text h1 {
        font-size: 1.2rem
    }
    .logo-text p {
        font-size: .8rem
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: #fff
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .05);
    z-index: 1
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, gold, #ffbf00);
    color: var(--primary-color);
    padding: .8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out
}

.badge-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: currentColor
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .3);
    animation: fadeInLeft 1s ease-out
}

.hero-description {
    font-size: 1.2rem;
    color: rgb(255 255 255 / .9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    animation: fadeInUp .6s ease-out
}

.hero-button.primary {
    background: var(--accent-color);
    color: var(--primary-color)
}

.hero-button.secondary {
    background: rgb(255 255 255 / .1);
    color: #d7b933;
    border: 2px solid rgb(255 255 255 / .2)
}

.hero-button i {
    margin-left: .8rem;
    transition: transform .3s ease
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

.hero-button:hover i {
    transform: translateX(5px)
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite
}

.logo-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgb(0 0 0 / .2))
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-20px)
    }
    100% {
        transform: translateY(0)
    }
}

@media (max-width:1024px) {
    .hero-title {
        font-size: 3rem
    }
    .hero-description {
        font-size: 1.1rem
    }
}

@media (max-width:768px) {
    .hero {
        padding: 4rem 0
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem
    }
    .hero-badge {
        margin: 0 auto 1.5rem
    }
    .hero-title {
        font-size: 2.5rem
    }
    .hero-description {
        margin: 0 auto 2rem
    }
    .hero-buttons {
        justify-content: center
    }
    .hero-image {
        max-width: 300px;
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 2rem
    }
    .hero-button {
        width: 100%;
        justify-content: center
    }
}

#banner-principal.hero {
    background: var(--nav-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

#banner-principal h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .3)
}

#banner-principal h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem
}

.hero-highlight p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: .9
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgb(0 0 0 / .15);
    border: 2px solid #fff0
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgb(0 0 0 / .2);
    background: #ffec99
}

@media (max-width:768px) {
    #banner-principal.hero {
        min-height: 50vh;
        padding: 2rem 0
    }
    #banner-principal h1 {
        font-size: 2rem
    }
    #banner-principal h2 {
        font-size: 1.5rem
    }
    .hero-highlight p {
        font-size: 1rem;
        padding: 0 1rem
    }
    .hero-button {
        padding: .8rem 1.5rem;
        font-size: .9rem
    }
}

@media (max-width:480px) {
    #banner-principal h1 {
        font-size: 1.75rem
    }
    #banner-principal h2 {
        font-size: 1.25rem
    }
    .hero-button {
        width: 100%;
        justify-content: center
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

#banner-principal h1,
#banner-principal h2,
.hero-button,
.hero-highlight p {
    animation: fadeInUp .8s ease-out forwards
}

#banner-principal h1 {
    animation-delay: .2s
}

#banner-principal h2 {
    animation-delay: .4s
}

.hero-highlight p {
    animation-delay: .6s
}

.hero-button {
    animation-delay: .8s
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #ffd700;
    --primary-color-rgb: 44, 62, 80;
    --secondary-color-rgb: 52, 152, 219;
    --accent-color-rgb: 255, 215, 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.pricing-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), .95), rgba(var(--secondary-color-rgb), .95))
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(255 255 255 / .05) 25%, transparent 25%, transparent 75%, rgb(255 255 255 / .05) 75%, rgb(255 255 255 / .05)), linear-gradient(45deg, rgb(255 255 255 / .05) 25%, transparent 25%, transparent 75%, rgb(255 255 255 / .05) 75%, rgb(255 255 255 / .05));
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: .15;
    z-index: 1
}

.pricing-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--accent-color-rgb), .1) 0, rgba(var(--primary-color-rgb), .9) 70%);
    z-index: 2;
    pointer-events: none
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--accent-color) !important;
    margin-bottom: 4rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3
}

.pricing-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3
}

.pricing-card {
    background: rgb(255 255 255 / .95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #fff0;
    box-shadow: 0 8px 32px rgb(0 0 0 / .1), 0 4px 8px rgb(255 255 255 / .1) inset;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px)
}

.pricing-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 12px 40px rgb(0 0 0 / .15), 0 6px 12px rgb(255 255 255 / .15) inset;
    border-color: var(--accent-color)
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transition: var(--transition)
}

.pricing-card:hover::before {
    height: 100%;
    opacity: .05
}

.price-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2
}

.price-amount {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    z-index: 2
}

.price-amount sup {
    font-size: .8rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: .5rem
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    position: relative;
    z-index: 2
}

.price-features li {
    padding: .5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem
}

.price-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700
}

.price-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color) !important;
    text-decoration: none;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #fff0;
    width: 100%;
    max-width: 200px;
    position: relative;
    z-index: 2
}

.price-button:hover {
    background: var(--secondary-color);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .15)
}

@media (max-width:1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
    }
}

@media (max-width:768px) {
    .pricing-section {
        padding: 4rem 0
    }
    .pricing-title {
        font-size: 2rem
    }
    .price-amount {
        font-size: 2rem
    }
}

@media (max-width:480px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
    .pricing-card {
        max-width: 300px;
        margin: 0 auto
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pricing-card {
    animation: cardEntrance .6s ease-out forwards;
    opacity: 0
}

.pricing-card:nth-child(1) {
    animation-delay: .2s
}

.pricing-card:nth-child(2) {
    animation-delay: .4s
}

.pricing-card:nth-child(3) {
    animation-delay: .6s
}

.pricing-card:nth-child(4) {
    animation-delay: .8s
}

.pricing-card:nth-child(5) {
    animation-delay: 1s
}

.pricing-card:nth-child(6) {
    animation-delay: 1.2s
}

.pricing-card:nth-child(7) {
    animation-delay: 1.4s
}

.pricing-card:nth-child(8) {
    animation-delay: 1.6s
}

@media (hover:hover) {
    .pricing-card {
        transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s ease, border-color .3s ease
    }
}

.vision-global {
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
    z-index: 1
}

.vision-global::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .1);
    z-index: -1
}

.vision-content h2 {
    position: relative;
    display: inline-block
}

.highlight-bar {
    width: 60%;
    height: 3px;
    background: var(--accent-color);
    transition: width .5s ease
}

.vision-card {
    background: rgb(255 255 255 / .1);
    border-radius: var(--border-radius);
    border: 1px solid rgb(255 255 255 / .15);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px)
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .2);
    background: rgb(255 255 255 / .15) !important
}

.vision-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: transform .3s ease
}

.vision-card:hover .vision-icon i {
    transform: scale(1.1) rotate(15deg)
}

.schedule p {
    position: relative;
    padding-left: 30px
}

.schedule p::before {
    content: "⏳";
    position: absolute;
    left: 0;
    top: 2px;
    opacity: .8
}

@media (max-width:768px) {
    .vision-card {
        margin-bottom: 1.5rem
    }
    .vision-content h2 {
        font-size: 2rem
    }
    .vision-icon i {
        font-size: 2rem
    }
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .2);
    background: rgb(255 255 255 / .15) !important
}

.vision-card p.position-relative::before {
    content: "⏳";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: .8
}

@media (max-width:768px) {
    .vision-global h2 {
        font-size: 2rem !important
    }
    .vision-card {
        margin: 0 auto;
        max-width: 350px
    }
}

#emprendedores {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), .03), rgba(var(--secondary-color-rgb), .03))
}

.content-section {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 2rem
}

.precio-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgb(255 255 255 / .95);
    border: 2px solid rgba(var(--primary-color-rgb), .1);
    transition: var(--transition)
}

.ventajas-card {
    background: rgba(var(--secondary-color-rgb), .05);
    border-color: var(--secondary-color)
}

.precio-list {
    list-style: none;
    padding-left: 0
}

.precio-list li {
    padding: .5rem 0;
    color: #4a5568
}

.recomendaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.recomendacion-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(var(--primary-color-rgb), .1);
    transition: var(--transition)
}

.recomendacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .08)
}

@media (max-width:1024px) {
    .category-title {
        font-size: 2rem
    }
    .content-section {
        padding: 1rem
    }
}

@media (max-width:768px) {
    .category-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center
    }
    .detail-card {
        padding: 1.5rem
    }
    .tip-card {
        padding: 1.5rem
    }
}

@media (max-width:480px) {
    .category-title {
        font-size: 1.6rem
    }
    .detail-card h3 {
        font-size: 1.2rem
    }
    .recomendacion-card {
        padding: 1.5rem
    }
}

@keyframes sectionEntrance {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.content-section {
    animation: sectionEntrance .6s ease-out forwards;
    opacity: 0
}

.content-section:nth-child(1) {
    animation-delay: .2s
}

.content-section:nth-child(2) {
    animation-delay: .4s
}

.content-section:nth-child(3) {
    animation-delay: .6s
}

.content-section:nth-child(4) {
    animation-delay: .8s
}

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(248 249 250 / .98), rgb(255 255 255));
    position: relative
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 3rem 0 2rem;
    padding: 1rem 0;
    border-bottom: 3px solid var(--accent-color)
}

.category-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    transition: transform .3s ease
}

.ss-accordion-tab {
    background: #fff;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    transition: var(--transition);
    border: 2px solid #fff0
}

.ss-accordion-tab.active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgb(0 0 0 / .12)
}

.ss-accordion-btn {
    width: 100%;
    background: 0 0;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition)
}

.ss-accordion-btn i {
    color: var(--secondary-color);
    transition: transform .3s ease;
    margin-left: 1rem
}

.ss-accordion-tab.active .ss-accordion-btn i {
    transform: rotate(180deg);
    color: var(--accent-color)
}

.ss-accordion-tab .content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    color: #4a5568;
    line-height: 1.6
}

.ss-accordion-tab.active .content {
    padding: 0 2rem 2rem;
    max-height: 500px
}

.section-separator {
    height: 1px;
    background: rgb(0 0 0 / .1);
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.faq-section {
    animation: fadeIn .6s ease-out forwards
}

@keyframes iconPulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.category-icon:hover {
    animation: iconPulse 1s ease infinite
}

@media (max-width:768px) {
    .category-title {
        font-size: 1.5rem;
        flex-wrap: wrap
    }
    .ss-accordion-btn {
        padding: 1rem;
        font-size: 1rem
    }
    .content {
        font-size: .95rem
    }
}

.content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(248 249 250 / .98), rgb(255 255 255))
}

.pricing-section {
    position: relative;
    overflow: hidden
}

.section-header {
    margin-bottom: 3rem !important
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--accent-color) !important;
    position: relative;
    margin-bottom: 2rem
}

.pricing-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.pricing-table {
    background: rgb(255 255 255 / .95);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(var(--primary-color-rgb), .1);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgb(0 0 0 / .08)
}

.pricing-table:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgb(0 0 0 / .12)
}

.table-header {
    text-align: center;
    margin-bottom: 1.5rem
}

.table-header i {
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color) !important
}

.table-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.table-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.table-list li {
    padding: .5rem 0;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #4a5568
}

.tic {
    color: var(--accent-color);
    min-width: 25px
}

.component-slider-ss {
    margin: 4rem 0;
    position: relative
}

.slider-ss {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08)
}

.slider-slider-gallery {
    position: relative;
    width: 100%
}

.item-ss {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    list-style: none;
    z-index: 2
}

.control li {
    background: rgb(255 255 255 / .9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition)
}

.control li:hover {
    background: var(--accent-color);
    color: #fff
}

@media (max-width:768px) {
    .content-section {
        padding: 2rem 0
    }
    .item-ss {
        min-height: 300px
    }
    .control li {
        width: 35px;
        height: 35px
    }
}

@media (max-width:480px) {
    .pricing-title {
        font-size: 1.8rem
    }
    .pricing-table {
        padding: 1.5rem
    }
    .table-list li {
        font-size: .95rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate__fadeInUp {
    animation: fadeInUp .6s ease-out forwards
}

.gold-text {
    color: gold !important
}

.accent-color {
    color: var(--accent-color)
}

.slider-image {
    aspect-ratio: 24/9;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%
}

.slider-image:nth-child(1) {
    background-image: url(../images/6.webp)
}

.slider-image:nth-child(2) {
    background-image: url(../images/8.webp)
}

.slider-image:nth-child(3) {
    background-image: url(../images/9.webp)
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color)
}

.hero {
    background: linear-gradient(135deg, var(--accent-color), #2c3e50);
    color: #fff;
    text-align: center;
    padding: 6rem 1rem
}

.hero-content {
    max-width: 800px;
    margin: 0 auto
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .3)
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color)
}

.plan-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.detail-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1);
    transition: transform .3s ease
}

.detail-card:hover {
    transform: translateY(-5px)
}

.detail-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.recomendaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.recomendacion-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color)
}

.recomendacion-card ul {
    list-style: none;
    padding-left: 0
}

.recomendacion-card li {
    padding: .5rem 0;
    display: flex;
    align-items: center
}

.recomendacion-card li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: .5rem
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 2.5rem
    }
    .hero h2 {
        font-size: 1.5rem
    }
}

.quote-container {
    background-image: url(../images/167_4.png);
    background-color: #0e78d8;
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 0
}

.quote-box {
    background-color: #004db3;
    border-radius: 20px;
    padding: 2rem;
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center
}

.quote-title {
    color: gold;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .3);
    margin-bottom: 1.5rem;
    font-size: 2rem
}

.quote-text {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6
}

.quote-button {
    background-color: gold;
    color: #084298;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

@media (max-width:768px) {
    .quote-box {
        padding: 1.5rem;
        margin: 0 15px 20px
    }
    .quote-title {
        font-size: 1.5rem
    }
}


/* Estilos generales */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #ffd700;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}


/* Hero Section */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--nav-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .05);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp .8s ease-out forwards;
    animation-delay: .2s;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    animation: fadeInUp .8s ease-out forwards;
    animation-delay: .4s;
}


/* About Section */

.about-section {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), .95), rgba(var(--secondary-color-rgb), .95));
    color: white;
    position: relative;
    padding: 6rem 0;
}


/* Services Section */

.services-section {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.95), rgba(var(--secondary-color-rgb), 0.95));
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 215, 0, 0.1) 75%, rgba(255, 215, 0, 0.1));
    background-size: 60px 60px;
    animation: backgroundShift 15s linear infinite;
    pointer-events: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.05));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(var(--accent-color-rgb), 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(var(--accent-color-rgb), 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.4);
}

.service-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes backgroundShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    .service-card {
        margin-bottom: 1.5rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}


/* Coverage Section */

.coverage-section {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.97), rgba(var(--secondary-color-rgb), 0.97));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}


/* Encabezado de sección */

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(var(--accent-color-rgb), 0.2);
}

.section-title {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
}

.divider-dot:nth-child(2) {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}


/* Tarjetas de cobertura */

.coverage-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(var(--accent-color-rgb), 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(var(--accent-color-rgb), 0.2);
    transition: all 0.3s ease;
}

.coverage-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.coverage-icon {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.coverage-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.coverage-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.coverage-list li:hover i {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .coverage-card {
        margin-bottom: 1rem;
    }
    .card-header {
        padding: 1.5rem;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .coverage-icon {
        font-size: 2rem;
    }
    .coverage-title {
        font-size: 1.3rem;
    }
    .card-body {
        padding: 1.5rem;
    }
}


/* Ajustes para navigation pills */

.faq-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.nav-pill {
    padding: 0.75rem 2rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-pill.active,
.nav-pill:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}


/* Mejoras para las tarjetas de FAQ */

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.ss-accordion-tab {
    border: 1px solid rgba(52, 152, 219, 0.2);
    margin-bottom: 0;
    background: white;
}

.ss-accordion-btn {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
}

.ss-accordion-tab.active {
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}


/* Mejoras para la tarjeta de contacto */

.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin: 4rem auto;
    max-width: 600px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}


/* Mejoras para el banner social */

.social-banner {
    background: rgba(52, 152, 219, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
}

.social-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-item.instagram a {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-item.facebook a {
    background: #4267B2;
    color: white;
}

.social-item.whatsapp a {
    background: #25D366;
    color: white;
}

.social-item a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Mejoras para el botón back to top */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}


/* Mejoras responsive */

@media (max-width: 768px) {
    .faq-navigation {
        flex-direction: column;
        padding: 0 2rem;
    }
    .nav-pill {
        width: 100%;
        text-align: center;
    }
    .contact-card {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }
    .social-carousel {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .social-item a {
        width: 280px;
        justify-content: center;
    }
}


/* Estilos para la sección de búsqueda */

.search-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.search-container {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.15);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.search-instructions {
    background: rgba(var(--secondary-color-rgb), 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.instructions-text {
    color: var(--primary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-text i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}


/* Ajustes responsive */

@media (max-width: 768px) {
    .search-section {
        margin: 1rem auto;
    }
    .search-input {
        font-size: 1rem;
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    .instructions-text {
        font-size: 0.9rem;
    }
}


/* Estilos de la sección de características */

.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.02), rgba(var(--secondary-color-rgb), 0.05));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.separator-line {
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-color);
}

.feature-card:hover .card-icon i {
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.feature-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
}

.feature-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--accent-color-rgb), 0.2);
}


/* Responsive */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .feature-card {
        padding: 2rem;
    }
    .card-icon {
        width: 60px;
        height: 60px;
    }
    .card-icon i {
        font-size: 1.5rem;
    }
}


/* Mejoras para la sección Hero */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--nav-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-badge {
    background: linear-gradient(45deg, var(--accent-color), #ffc107);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}


/* Mejoras para Features Section */

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
}


/* Mejoras para Contact Section */

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.97), rgba(var(--secondary-color-rgb), 0.97));
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}


/* Social Banner Mejoras */

.social-item a {
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.social-item a:hover {
    transform: translateY(-5px);
}


/* Mejoras de Accesibilidad */

.feature-button:focus,
.contact-btn:focus,
.social-item a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}


/* Media Queries */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .social-carousel {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Nuevos estilos para efectos y animaciones */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9));
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-effect {
    animation: float 3s ease-in-out infinite;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin: 1rem auto;
}

/* Animaciones */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mejoras en componentes existentes */
.feature-card {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

/* Estilos para la sección de recomendaciones */
.recommendations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.recommendations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(var(--accent-color-rgb), 0.03) 0px,
        rgba(var(--accent-color-rgb), 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
}

.recommendation-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.recommendation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.recommendation-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.recommendation-card:hover .recommendation-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-color);
}

.recommendation-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.recommendation-card:hover .recommendation-icon i {
    color: white;
}

.recommendation-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.recommendation-list {
    margin: 1.5rem 0;
}

.recommendation-list li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(var(--primary-color-rgb), 0.1);
    transition: all 0.3s ease;
}

.recommendation-list li:last-child {
    border-bottom: none;
}

.recommendation-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.recommendation-list li:hover {
    padding-left: 0.5rem;
    color: var(--accent-color);
}

.recommendation-list li:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.recommendation-tip {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(var(--accent-color-rgb), 0.05);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.recommendation-tip i {
    color: var(--accent-color);
    font-size: 1.2rem;
    padding-top: 0.2rem;
}

.recommendation-tip p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animaciones */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommendation-card {
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

.recommendation-card:nth-child(1) {
    animation-delay: 0.2s;
}

.recommendation-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .recommendations-section {
        padding: 4rem 0;
    }
    
    .ssc-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .recommendation-card {
        padding: 2rem;
    }
    
    .recommendation-icon {
        width: 60px;
        height: 60px;
    }
    
    .recommendation-icon i {
        font-size: 1.5rem;
    }
    
    .recommendation-content h3 {
        font-size: 1.3rem;
    }
}
</style>