@charset "utf-8";
/* =======================
    RESET + BASE
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #191919;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =======================
    HEADER
======================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: rgba(25, 25, 25, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 48px;
}

.navbar ul {
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar li.active a {
    color: #98D13D;
}

.lang-btn,
.menu-btn {
    background: #98D13D;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s;
}

.lang-btn:hover,
.menu-btn:hover {
    background: #3A86FF;
}

/* RESPONSIVE NAV */
.menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 6px;
    }

    .navbar ul.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}

/* =======================
    HERO SECTION
======================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding-top: 120px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px #662D91;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.4;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

/* =======================
    BOTONES
======================= */
.neon-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    background: #98D13D;
    color: #000;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 12px #98D13D;
    transition: all 0.3s;
    z-index: 1;
    --x: 50%;
    --y: 50%;
}

.neon-btn::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle closest-side,
        rgba(58, 134, 255, 0.45),
        rgba(102, 45, 145, 0)
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.neon-btn:hover::before {
    opacity: 1;
}

.neon-btn:hover {
    background: #3A86FF;
    box-shadow: 0 0 16px #3A86FF, 0 0 30px #3A86FF;
    color: #fff;
}

/* =======================
    SECTIONS BASE
======================= */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding-top: 120px;
}

/* CORRECCIÓN SCROLL-MARGIN: Solo a las secciones que se cortan */
#portfolio,
#plans,
#motion-grafix,
#contact {
    scroll-margin-top: 120px;
}

.portfolio-intro-padding {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .hero,
    .section,
    .portfolio-intro-padding {
        padding-top: 100px;
    }
    .portfolio-intro-padding {
        padding-top: 100px;
    }
    
    #portfolio,
    #plans,
    #motion-grafix,
    #contact {
        scroll-margin-top: 100px;
    }
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px #662D91;
}


/* =======================
    ABOUT SECTION
======================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: block;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.about-image:hover {
    box-shadow: 0 8px 40px rgba(0, 180, 255, 0.35);
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.45s cubic-bezier(.2,.9,.3,1), filter 0.35s ease;
    transform-origin: center center;
}

.about-image:hover img {
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* =======================
    SERVICES
======================= */

@keyframes neon-rotate {
    to {
        transform: rotate(360deg);
    }
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.service-card {
    position: relative;
    flex: 0 1 calc((100% - 4rem) / 3);
    max-width: 380px;
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 5;
}

.service-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0%,
        transparent 25%,
        #98D13D 35%,
        #3A86FF 50%,
        #98D13D 65%,
        transparent 75%,
        transparent 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background: #1a1a1a;
    border-radius: 9px;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(58, 134, 255, 0.4);
    border-color: transparent;
}

.service-card:hover:before {
    opacity: 1;
    animation: neon-rotate 4s linear infinite;
}

.service-card:hover:after {
    background: #111;
}

.icon-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .icon-image img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(152, 209, 61, 0.5);
}

@media (max-width: 1100px) {
    .service-card {
        flex: 0 1 calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }

    .service-grid {
        gap: 1.25rem;
        padding: 0 1rem;
    }
}

/* =======================
    PORTFOLIO
======================= */
.portfolio-intro-padding {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .portfolio-intro-padding {
        padding-top: 100px;
    }
}
.portfolio {
    text-align: center;
}
.portfolio-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #bbb;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(152, 209, 61, 0.25);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.portfolio-item h4 {
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 1.15rem;
    color: #98D13D;
    transition: color 0.3s ease;
}

.portfolio-item:hover h4 {
    color: #3A86FF;
}

.fullscreen-btn {
    display: none;
}

.portfolio .btn {
    margin-top: 2.5rem;
}

/* =======================
    PLANS PAGE / PREVIEW
======================= */

.plans-page.section {
    padding-top: 8rem;
}
.plans-page .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px #662D91;
}

.plan-tagline {
    font-size: 0.85rem;
    color: #bbb;
    margin: -0.5rem 0 1.5rem 0; 
    line-height: 1.4;
    text-align: left; 
    padding: 0 0.5rem; 
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


.plans-btn-container {
   margin-top: 3rem;
   text-align: center;
}

.plan-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s ease-in-out;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #98D13D;
}

.plan-card .price {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #3A86FF;
}

.plan-card .price .currency {
    font-size: 2.2rem;
}

.plan-card .price .duration {
    font-size: 1.2rem;
    font-weight: normal;
    color: #bbb;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    line-height: 1.6;
    text-align: left;
}

.plan-card ul li {
    margin: 0.8rem 0;
    color: #ddd;
    font-size: 1rem;
    padding-left: 1.25rem;
    position: relative;
}

.plan-card ul li::before {
    content: "•";
    color: #98D13D;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0.1rem;
    text-shadow: 0 0 8px #98D13D;
}

.plan-card ul li.disabled {
    color: #555;
    text-decoration: line-through;
    opacity: 0.7;
}

.plan-card ul li.disabled::before {
    content: "✖";
    color: #662D91;
    text-shadow: none;
}

.plan-card .btn {
    margin-top: auto;
}

.plan-card.featured {
    border-color: #3A86FF;
    box-shadow: 0 0 25px rgba(58, 134, 255, 0.4);
    transform: scale(1.05);
}

.plan-card.featured h3 {
    color: #3A86FF;
}

.plan-card.featured .btn {
    background: #98D13D;
    color: #000;
    box-shadow: 0 0 12px #98D13D;
}
.plan-card.featured .btn:hover {
    background: #3A86FF;
    box-shadow: 0 0 16px #3A86FF, 0 0 30px #3A86FF;
    color: #fff;
}

.note {
    margin-top: 2rem;
    font-style: italic;
    color: #aaa;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.section-intro {
    text-align: center;
    max-width: 800px; 
    margin: 0.5rem auto 3.5rem auto; 
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.plans-page.section {
    padding-bottom: 6rem; 
}
/* =======================
    CONTACT
======================= */
.contact-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(20, 20, 20, 0.85);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 0 20px #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.contact-form .form-row,
.contact-form .form-group {
    width: 100%;
}

.contact-form .form-row .form-group {
    flex: 1 1 0;
}

.contact-form .form-group {
    width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #98D13D;
    box-shadow: 0 0 10px #98D13D66;
}

.contact-form .neon-btn {
    width: 140px;
    min-width: 120px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.7rem 1.5rem;
    font-size: 1.06rem;
    display: block;
}

@media (max-width: 600px) {
    .contact-form {
        padding: 1.2rem;
        max-width: 98vw;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-form .neon-btn {
        width: 100%;
        max-width: 200px;
        min-width: 0;
        padding: 0.7rem 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }
}
/* =======================
    FOOTER
======================= */
.site-footer {
    background: #111;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    margin: 0 0.5rem;
    color: #98D13D;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3A86FF;
}

/* =======================
    SCROLL ANIMATIONS
======================= */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* =======================
    MODAL CINEMÁTICO (VIDEO)
======================= */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

#modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    transition: background 0.3s;
}

.close-modal:hover {
    background: #98D13D;
}

/* =======================
    INTERACTIVIDAD - PLANES
======================= */
.plan-card {
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        #3A86FF 10%,
        #98D13D 25%,
        transparent 40%,
        transparent 60%,
        #98D13D 75%,
        #3A86FF 90%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #1a1a1a;
    border-radius: 10px;
    z-index: 1;
}

.plan-card > * {
    position: relative;
    z-index: 2;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(152, 209, 61, 0.3);
    border-color: transparent;
}

.plan-card:hover::before {
    opacity: 1;
    animation: neon-rotate 5s linear infinite;
}

@keyframes neon-rotate {
    to {
        transform: rotate(360deg);
    }
}

.plan-card.featured:hover {
    box-shadow: 0 0 30px rgba(58, 134, 255, 0.55);
}

/* =======================
    CONTACT PREVIEW
======================= */

.contact-preview {
    padding: 8rem 20px 80px 20px;
    text-align: center;
    color: #fff;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-preview h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #a3e6ff;
    text-shadow: 0 0 7px rgba(163, 230, 255, 0.8), 0 0 15px rgba(163, 230, 255, 0.4);
}

.contact-preview p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-preview .neon-btn {
    margin: 0 auto;
}

/* =======================
    FOOTER BASE
======================= */
.main-footer {
    background: #0a0a0a;
    color: #ddd;
    padding: 60px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-logo-img {
    width: 160px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8));
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0ff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #888;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #0ff;
    text-shadow: 0 0 8px #0ff, 0 0 20px #08f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* =======================
    PORTFOLIO FILTER
======================= */
.filters {
    text-align: center;
    margin: 40px auto;
    padding: 0 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #0ff;
    color: #0ff;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(0, 255, 255, 0.15);
    transition: width 0.3s ease;
    z-index: 0;
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.filter-btn.active {
    background: #0ff;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6), 0 0 25px rgba(0, 255, 255, 0.4);
}

/* =======================
    PORTFOLIO GRID
======================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.2);
}

.portfolio-item iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

.portfolio-info {
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.portfolio-info h3 {
    color: #0ff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: #aaa;
    font-size: 0.85rem;
}

/* =======================
    VIDEO MODAL
======================= */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

#close-modal {
    position: absolute;
    top: -35px;
    right: -5px;
    font-size: 2rem;
    color: #0ff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 10px #0ff;
    transition: transform 0.3s ease, color 0.3s ease;
}

#close-modal:hover {
    color: #fff;
    transform: scale(1.1);
}

/* =======================
    RESPONSIVE DESIGN
======================= */
@media (max-width: 800px) {
    .portfolio-grid {
        width: 100vw;
        max-width: 100vw;
        margin-left: -8px;
        margin-right: -8px;
        padding: 0;
    }
    .portfolio-item {
        width: 100vw;
        max-width: 100vw;
        margin: 0 auto 10px auto !important;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }
    .portfolio-item iframe {
        display: block;
        width: 100vw !important;
        max-width: 100vw;
        min-width: 0;
        min-height: 200px;
        aspect-ratio: 16/9;
        border-radius: 0;
        background: #222;
        margin: 0 auto;
    }
    .portfolio-info {
        padding: 6px 0 8px 0 !important;
        font-size: 0.97rem;
        text-align: center;
        background: none !important;
    }
    .portfolio-info h3 {
        margin: 0 0 2px 0;
        font-size: 1rem;
        font-weight: 600;
    }
    .portfolio-info p {
        margin: 0 0 2px 0;
        font-size: 0.95rem;
    }
}
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 0 !important;
        padding: 10 !important;
        margin: 0 !important;
        align-items: center;
    }
    .footer-col {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.93rem;
        text-align: center;
    }
    .footer-logo-img {
        width: 150px;
        margin-bottom: 2px !important;
    }
    .footer-col.navigation ul,
    .footer-col.navigation ul li {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.1;
    }
    .footer-link {
        font-size: 0.95rem;
        margin-bottom: 1px !important;
        display: inline-block;
    }
    .footer-col.navigation h3,
    .footer-col h3,
    .footer-col blockquote h3 {
        margin-bottom: 1px !important;
        font-size: 1rem;
    }
    .social-icons {
        gap: 8px !important;
        font-size: 1rem;
        margin: 0 !important;
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 0 !important;
        padding-top: 2px !important;
        font-size: 0.72rem;
        text-align: center;
    }
    .brand-info p {
        margin: 2px 0 !important;
    }
    .footer-col blockquote {
        margin: 0 !important;
        padding: 0 !important;
        border: none;
    }
}
/* ===== FEEDBACK DE FORMULARIO DE CONTACTO ===== */
#form-feedback {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
    min-height: 24px;
    color: #fff;
    font-family: inherit;
}

.form-feedback {
    padding: 14px 18px;
    border-radius: 7px;
    background: rgba(38, 255, 181, 0.07);
    margin: 0 auto 8px auto;
    display: inline-block;
    font-weight: 500;
    color: #98D13D;
    box-shadow: 0 0 8px #98D13D33;
}

.form-feedback.error {
    background: rgba(255,38,38,0.09);
    color: #ff6060;
    box-shadow: 0 0 8px #ff606033;
}

@media (max-width: 600px) {
    #form-feedback {
        max-width: 98vw;
    }
}
/* ------------------------------------------------------------------ */
/* SECCIÓN "CÓMO FUNCIONA" (How It Works) */
/* ------------------------------------------------------------------ */

.how-it-works {
    margin-top: 5rem;
    padding: 0 1rem;
}

.how-it-works-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #98D13D; 
    
    text-shadow: 
        0 0 4px #98D13D,   
        0 0 10px #98D13D,  
        0 0 20px rgba(152, 209, 61, 0.5); 
}

.how-it-works-content {
    max-width: 700px;
    margin: 0 auto; 
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left; 
}

.how-it-works-content p {
    margin-bottom: 1.2rem;
}

/* ------------------------------------------------------------------ */
/* ESTILO NEÓN PARA ÉNFASIS EN EL TEXTO (FRASES CLAVE) */
/* ------------------------------------------------------------------ */

.neon-emphasis {
    color: #98D13D; 
    font-weight: bold;
    text-shadow: 
        0 0 4px #98D13D,
        0 0 10px #98D13D;
}
/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  line-height: 58px;
}

.whatsapp-float:hover {
  background-color: #20b858;
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
