/* ===================================
   Lucero Zambrano - Main Stylesheet
   =================================== */

/* === FONT FACES === */
/* Poppins - Body Font */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-medium-italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Roxborough CF - Heading Font */
@font-face {
    font-family: 'Roxborough CF';
    src: url('../fonts/roxborough-cf-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roxborough CF';
    src: url('../fonts/roxborough-cf-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roxborough CF';
    src: url('../fonts/roxborough-cf-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roxborough CF';
    src: url('../fonts/roxborough-cf-heavy.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* === ROOT VARIABLES === */
:root {
    /* Gradientes principales */
    --gradient-warm: linear-gradient(135deg, #F0B57B 0%, #D47452 100%);
    --gradient-dark: linear-gradient(135deg, #3E4766 0%, #513D54 100%);

    /* Colores complementarios */
    --color-accent: #6D82B2;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Colores de texto */
    --text-dark: #445173;
    --text-light: #FFFFFF;

    /* Tipografía */
    --font-heading: 'Roxborough CF', 'Playfair Display', serif;
    --font-body: 'Poppins', 'Montserrat', sans-serif;

    /* Espaciado */
    --section-padding: clamp(80px, 10vw, 120px);
    --section-padding-mobile: clamp(40px, 8vw, 60px);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* === HEADER === */
.header-main {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-main.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* === BUTTONS === */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--text-light);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 181, 123, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #F0B57B;
}

.btn-outline-primary:hover {
    background: var(--gradient-warm);
    color: var(--text-light);
    border-color: transparent;
}

/* === SECTIONS === */
section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-dark);
    opacity: 0.8;
}

/* === BANNER 1: HERO === */
.banner-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 71, 102, 0.7) 0%, rgba(81, 61, 84, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero {
    animation: fadeInUp 1s ease 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* === BANNER 2: QUIÉN SOY === */
.banner-quien-soy {
    background: var(--gradient-warm);
    color: var(--text-dark);
}

.banner-quien-soy .section-title {
    background: var(--gradient-dark);
    background-clip: text;
}

.profile-image-wrapper {
    position: relative;
    padding: 20px;
}

.profile-image {
    width: 100%;
}

.bio-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #3E4766;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #F0B57B;
}

.cert-badge i {
    color: #F0B57B;
}

.cert-badge:hover {
    background: #513D54;
    transform: translateX(5px);
}

/* === BANNER 3: MÉTODO TRANSFORMA === */
.banner-metodo {
    background-image:
        url(../img/placeholders/bg.png),
        var(--gradient-dark);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: auto 100%;
    color: var(--text-light);
}

.banner-metodo .section-title {
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.banner-metodo .section-subtitle {
    color: var(--text-light);
    opacity: 0.9;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
}

.metodo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.metodo-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.metodo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metodo-card h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.metodo-card p {
    color: rgba(255, 255, 255, 0.8);
}

.resultado-box {
    background: rgba(240, 181, 123, 0.2);
    padding: 30px;
    border-radius: 15px;
}

.resultado-box h4 {
    color: #F0B57B;
    margin-bottom: 1rem;
}

/* === BANNER 4: PARA QUIÉN === */
.banner-para-quien {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.banner-para-quien .parallax-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: 0;
}

.banner-para-quien .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 181, 123, 0.9) 0%, rgba(212, 116, 82, 0.9) 100%);
    z-index: 1;
}

.banner-para-quien .container {
    position: relative;
    z-index: 2;
}

.banner-para-quien .section-title {
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.perfil-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: all 0.3s ease;
}

.perfil-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.perfil-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perfil-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* === BANNER 5: ESPACIOS === */
.banner-espacios {
    background: linear-gradient(to bottom, #F5F5F5 0%, #FFFFFF 100%);
}

.espacio-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.espacio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.espacio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.espacio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.espacio-card:hover .espacio-image img {
    transform: scale(1.1);
}

.espacio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.espacio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.espacio-subtitle {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.espacio-description {
    flex: 1;
    margin-bottom: 1.5rem;
}

.espacio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.espacio-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* === BANNER 6: TESTIMONIOS === */
.banner-testimonios {
    background-image:
        url(../img/placeholders/bg.png),
        var(--gradient-dark);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: auto 100%;
    color: var(--text-light);
}

.banner-testimonios .section-title {
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
}

.testimonio-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonio-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #F0B57B;
}

.testimonio-text {
    margin-bottom: 2rem;
}

.testimonio-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonio-author {
    text-align: center;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-profesion {
    font-size: 0.9rem;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* === BANNER 7: CÓMO TRABAJO === */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-warm);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    margin-bottom: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BANNER 8: RECURSOS === */
.banner-recursos {
    background: var(--gradient-warm);
    color: var(--text-dark);
}

.recursos-box {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.recursos-list {
    max-width: 600px;
    margin: 0 auto;
}

.recurso-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.05rem;
}

.recurso-item i {
    font-size: 1.5rem;
    color: #F0B57B;
    flex-shrink: 0;
}

.recursos-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-control {
    padding: 12px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #F0B57B;
    box-shadow: 0 0 0 0.2rem rgba(240, 181, 123, 0.25);
}

.form-privacy {
    text-align: center;
    color: #777;
}

/* === BANNER 9: FAQ === */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: #FFFFFF;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-warm);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(240, 181, 123, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #F0B57B;
}

.accordion-body {
    padding: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* === BANNER 10: CONTACTO === */
.banner-contacto {
    background-image:
        url(../img/placeholders/bg.png),
        var(--gradient-dark);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: auto 100%;
    color: var(--text-light);
}

.banner-contacto .section-title {
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.contacto-box {
    text-align: center;
}

.contacto-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.calendly-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.contacto-info h4 {
    color: #F0B57B;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #F0B57B;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: #F0B57B;
}

.social-links-large {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background: var(--gradient-warm);
    transform: translateY(-5px);
}

/* === FOOTER === */
.footer-main {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-logo .logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #F0B57B;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #F0B57B;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-warm);
    transform: translateY(-5px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === ANIMATIONS & TRANSITIONS === */

/* Animate.css customization */
.animate__animated {
    --animate-duration: 1s;
    --animate-delay: 0s;
}

.animate__slow {
    --animate-duration: 1.5s;
}

.animate__slower {
    --animate-duration: 2s;
}

.animate__fast {
    --animate-duration: 0.6s;
}

/* Elements waiting for animation */
[data-animate] {
    opacity: 0;
}

/* Smooth bounce animation for scroll indicator */
@keyframes smoothBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.scroll-indicator {
    animation: smoothBounce 2s ease-in-out infinite;
}

/* Professional hover transitions */
.metodo-card,
.perfil-card,
.espacio-card,
.cert-badge,
.timeline-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth shadow transitions */
.metodo-card:hover,
.perfil-card:hover,
.espacio-card:hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button smooth transitions */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth image zoom */
.espacio-image img,
.profile-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav link smooth underline */
.nav-link::after {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion smooth transitions */
.accordion-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel smooth transitions */
.carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === INSTAGRAM SECTION === */
.banner-instagram {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.banner-instagram .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.banner-instagram .section-subtitle {
    font-size: 1.1rem;
    color: rgba(68, 81, 115, 0.7);
    font-weight: 300;
}

/* Instagram Post Card */
.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.instagram-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.instagram-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.instagram-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Aspect ratio 1:1 */
    overflow: hidden;
    background: #f5f5f5;
}

.instagram-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post:hover .instagram-image img {
    transform: scale(1.1);
}

/* Instagram Overlay */
.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 181, 123, 0.9) 0%, rgba(212, 116, 82, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay-content {
    text-align: center;
}

.instagram-icon {
    font-size: 3rem;
    color: #fff;
    animation: instagramPulse 2s ease-in-out infinite;
}

.video-icon {
    font-size: 2rem;
    color: #fff;
    margin-top: 10px;
    display: block;
}

@keyframes instagramPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Instagram CTA Button */
.instagram-cta {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    background: linear-gradient(135deg, #F0B57B 0%, #D47452 100%);
    border: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(240, 181, 123, 0.3);
}

.instagram-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 181, 123, 0.4);
    background: linear-gradient(135deg, #D47452 0%, #F0B57B 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-instagram {
        padding: var(--section-padding-mobile) 0;
    }

    .instagram-icon {
        font-size: 2.5rem;
    }

    .video-icon {
        font-size: 1.5rem;
    }

    .instagram-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner-instagram .section-title {
        font-size: 1.8rem;
    }

    .banner-instagram .section-subtitle {
        font-size: 1rem;
    }

    .instagram-post {
        margin-bottom: 15px;
    }
}

.text-lightx{
    color: #fff !important;
}