/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas na logo */
    --primary-red: #e71919;
    --primary-red-light: #fa6262;
    --primary-red-dark: #d82c2c;
    --dark-gray: #2D3748;
    --medium-gray: #4A5568;
    --light-gray: #EDF2F7;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 80%, var(--primary-red) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title{
        font-size: 42px;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    padding: 1.7rem 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    animation: fadeInDown 0.3s ease-out both;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5rem
}

.logo a{
    color: #ffffff ;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

header.scrolled .logo a{
    color: #0056e0;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled nav{
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    backdrop-filter: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
    left: 50%;
}

.nav-link.active:after{
    width: 100%;
    left: 50%;
}

nav ul li a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

header.scrolled nav ul li a {
    color: #333;
}

header.scrolled nav ul li a::after {
    background-color: var(--primary-red);;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-placeholder {
    padding: 10px;
    border-radius: 15px;
    background-color: #ffffffe1;
    height: 55px;
}

.logo-container:focus{
    outline: none
}

.btn-nav {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
    margin-left: 2rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 0, 0, 0.4);
    background: var(--gradient-primary);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
header.scrolled .menu-toggle i {
    color: var(--primary-red);
}

.menu-toggle:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0% {
        transform: scale(0.1, 0.1) translate(-50%, -50%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(20, 20) translate(-50%, -50%);
        opacity: 0;
    }
}


/* Mobile Header Redesign */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 86, 224, 0);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0);
        transition: all 0.3s ease;
    }
    
    header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(0, 86, 224, 0.1);
        padding: 0 1rem;
    }
    
    /* Logo Mobile */
    .logo-container {
        flex: 1;
        text-align: left;
        max-width: min-content;
    }

    .logo-placeholder{
        height: 35px;
        padding: 0;
        border-radius: 0;
    }

    /* Esconder navegação desktop */
    nav {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Menu Toggle Redesenhado */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: var(--gradient-primary);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
    }
    
    .menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(224, 0, 0, 0.4);
    }
    
    /* Ícone hambúrguer animado */
    .menu-toggle::before,
    .menu-toggle::after,
    .menu-toggle i {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle::before {
        transform: translateY(-6px);
    }
    
    .menu-toggle::after {
        transform: translateY(6px);
    }
    
    .menu-toggle i {
        opacity: 1;
        transform: translateY(0);
        position: relative;
        font-size: 0;
    }
    
    /* Animação do menu ativo */
    .menu-toggle.active::before {
        transform: rotate(45deg);
    }
    
    .menu-toggle.active::after {
        transform: rotate(-45deg);
    }
    
    .menu-toggle.active i {
        opacity: 0;
    }
    
    /* Menu Mobile Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background:linear-gradient(135deg, #e71919e3 0%, #d82c2cbd 100%);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-100%);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Navigation Links Mobile */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .mobile-nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        min-width: 200px;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
    }
    
    .mobile-nav-link:hover::before {
        left: 0;
    }
    
    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .mobile-nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* CTA Mobile no Menu */
    .mobile-cta {
        background: white;
        color: #e00000;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-size: 1.4rem;
        font-weight: 650;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        min-width: 320px;
        text-align: center;
        animation: pulse 0.3s ease;
    }
    
    .mobile-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: #f8f9fa;
    }
    
    /* Decoração do menu mobile */
    .mobile-menu-decoration {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Ajuste do body quando menu está ativo */
    body.menu-active {
        overflow: hidden;
    }
    
    /* Espaçamento para o header fixo */
    .hero-premium {
        padding-top: 70px;
    }
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgb(37, 37, 37);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    object-fit: cover;
}

.hero-bg-image {
    object-fit: cover;
    width: 100%;
}

@media (max-width:768px) {
    .hero-background {
        object-fit: cover;
    }
    .hero-bg-image {
        width: auto;
        object-fit: cover;
        height: 100vh;
        content: url(./assets/herobgm.png);
    }
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Slogan da marca */
.hero-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.2s ease-out 0.5s both;
}

.slogan-line {
    width: 150px;
    height: 10px;
    border-radius: 20%;
    box-shadow: var(--shadow-light);
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.hero-slogan span {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2vh;
    color: white;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-insta {
    background: linear-gradient(135deg,  #f9ce34 0%,  #ee2a7b 50%, #6228d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: rgb(245, 245, 245);
    margin-bottom: 5vh;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    letter-spacing: 0.5px;
    width: 300px;
    text-decoration: none;
}

.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-gray);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 18px 40px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    letter-spacing: 0.5px;
    width: 300px;
    text-decoration: none;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* Cards de Acessibilidade Flutuantes */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    padding-left: 10rem;
    padding-right: 10rem;
    display: none;
}

.accessibility-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 280px;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 6s ease-in-out infinite;
}

.accessibility-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.15);
}

.accessibility-card.left {
    left: 40px;
    top: 20%;
    animation-delay: 0s;
}

.accessibility-card.right {
    right: 40px;
    top: 30%;
    animation-delay: -2s;
}

.accessibility-card.left-bottom {
    left: 60px;
    bottom: 25%;
    animation-delay: -4s;
}

.accessibility-card.right-bottom {
    right: 60px;
    bottom: 20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    font-size: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: #5E6A75;
    line-height: 1.5;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-content{
        padding: 0 60px;
    }
    
    .hero-text {
        width: 400px;
        padding: 1.7rem;
    }
    
    .slogan-line {
        width: 80px;
        height: 10px;
        border-radius: 20%;
        box-shadow: var(--shadow-light);
        background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    }
    
    .hero-slogan span{
        font-size: 0.75rem;
    }
    .hero-title{
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}







/* SOBRE SECTION*/
.sobre-section{
    padding: 60px 2rem;
}


/* Estatísticas */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 3rem 0;
    padding: 30px;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(20, 23, 26, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-circle:hover{
    transform: scale(1.05);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary-red);
    opacity: 0.5;
    animation: statpulse 2s infinite;
}

@keyframes statpulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-item p {
    font-size: 1rem;
    color: #5E6A75;
    font-weight: 500;
}



.sobre-glass-card {
    background-color: white;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(20, 23, 26, 0.08);
}

.sobre-glass-header{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 2rem;
}

.sobre-glass-header h3{
    font-size: 42px;
    text-align: center;
    justify-content: center;
}

.sobre-container {
    gap: 1rem;
    padding: 2rem;
    padding-top: 0;
    display: flex;
    flex-direction: row;
}

.sobre-image-container{
    padding-left: 2rem;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.sobre-image{
    border-radius: 15px;
    object-fit: cover;
    width: 400px;
    transition: all 0.3s ease;
}

.sobre-image:hover{
    scale: 1.05;
}

.sobre-text-container {
    padding: 2rem;
}

.sobre-text-container p{
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 17px;
    text-align: justify;
}

@media (max-width: 768px) {
    .sobre-section{
        padding: 60px 0;
    }
    
    .sobre-section .container {
        padding: 10px;
    }
    
    .stats-container {
        margin-top: -2rem;
    }
    
    .sobre-glass-header h3{
        font-size: 32px;
        text-align: center;
        justify-content: center;
        width: min-content;
    }
    
    .sobre-container {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .sobre-image-container{
        padding: 0;
        justify-content: center;
        text-align: center;
    }
    
    .sobre-image{
        width: 240px;
    }
    
    .sobre-text-container{
        padding: 0.25rem;
    }
}















/* Diferenciais Section */
.diferenciais {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.dferencial-card:hover{
    transform: translateY(-6px);
}

.premium-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    margin-bottom: 24px;
}

.card-icon-large {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-red);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--medium-gray);
    text-align: center;
    line-height: 1.4;
}

.trust-indicators {
    
}

.trust-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    font-size: 40px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.trust-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .diferenciais-grid{
        grid-template-columns: auto;
        margin-bottom: 30px;
    }
}









/* Footer */
.footer {
    background: linear-gradient(135deg, #212121 0%, #16213e 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 25px 0 10px;
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-logo {
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
    height: 60px;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    border-color: var(--primary-red);
    background: rgba(229, 62, 62, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== FOOTER MOBILE REDESENHADO ==================== */

@media (max-width: 768px) {
    .footer {
        background: linear-gradient(135deg, #212121 0%, #16213e 100%);
        padding: 0 0 0 0;
        position: relative;
        overflow: hidden;
        margin: 0 0 0 0;
    }
    
    .footer-container {
        padding: 0;
        margin: 0;
        max-width: 100vw;
    }
    
    /* Header do Footer Mobile */
    .footer-mobile-header {
        background: var(--gradient-primary);
        padding: 2.5rem 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .footer-mobile-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1), transparent 60%);
        pointer-events: none;
    }
    
    .footer-logo-mobile {
        color: white;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .footer-logo-mobile span {
        font-weight: 300;
    }
    
    .footer-tagline-mobile {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .footer-cta-mobile {
        background: white;
        color: #0056e0;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 2;
    }
    
    .footer-cta-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: #f8f9fa;
    }
    
    /* Conteúdo Principal do Footer */
    .footer-main-content {
        padding: 2rem 1.5rem;
        background: #292929;
        text-align: center;
    }
    
    /* Links de Navegação Mobile */
    .footer-nav-mobile {
        margin-bottom: 2.5rem;
    }
    
    .footer-nav-mobile h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }
    
    .footer-nav-mobile h3::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gradient-primary);
    }
    
    .footer-links-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-link-mobile {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        color: #b0b7c3;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }
    
    .footer-link-mobile:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(224, 0, 0, 0.3);
        color: white;
        transform: translateY(-2px);
    }

    .local-mobile{
        color: #b0b7c3;
        margin-bottom: 10px;
    }

    .local-mobile:hover{
        color: white;
        transform: translateY(-2px);
    }
    
    /* Redes Sociais Mobile */
    .footer-social-mobile {
        margin-bottom: 2.5rem;
    }
    
    .footer-social-mobile h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }
    
    .footer-social-mobile h3::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gradient-primary);
    }
    
    .social-links-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link-mobile {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
    }
    
    .social-link-mobile:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(224, 0, 0, 0.4);
    }
    
    /* Informações de Contato Mobile */
    .footer-contact-mobile {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact-mobile h3 {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .contact-info-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-item-mobile {
        color: #b0b7c3;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .contact-item-mobile i {
        color: var(--primary-red);
        width: 20px;
    }
    
    /* Footer Bottom Mobile */
    .footer-bottom-mobile {
        background: #0f1419;
        padding: 1rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-legal-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-legal-mobile a {
        color: #b0b7c3;
        text-decoration: none;
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
        transition: color 0.3s ease;
    }
    
    .footer-legal-mobile a:hover {
        color: white;
    }
    
    .footer-copyright-mobile {
        color: #6b7280;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Esconder elementos desktop */
    .footer-top,
    .footer-nav,
    .footer-bottom {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(207, 207, 207);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: white;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Hover effects for interactive elements */
button, .nav-link, .footer-links a, .social-link {
    cursor: pointer;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.premium-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--medium-gray);
    font-size: 14px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    font-size: 32px;
}

.trust-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 14px;
    color: var(--medium-gray);
}










/*Ações Sociais Section*/

.awards-gallery-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header da Seção */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Grid da Galeria - Foco nas Imagens */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Item de Premiação - Design Focado na Imagem */
.award-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform-origin: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.award-item.hidden {
    opacity: 0;
    visibility: collapse;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-item.showing {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin: 0;
    transition: all 0.5s ease 0.1s;
}

/* Container da Imagem - Maior Destaque */
.award-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: max-content;
    transition: all 0.3s ease;
}

.award-image {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
}

.award-image-real {
    height: fit-content;
    width: 400px;
    height: 380px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.award-image-real:hover{
    scale: 1.05;
}

.award-item:hover .award-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.award-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* Informações da Premiação - Mais Concisas */
.award-info {
    padding: 20px;
    text-align: center;
}

.award-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.award-info p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botão Mostrar Mais */
.show-more-container {
    text-align: center;
    margin-bottom: 60px;
    margin-top: -60px;
}

@media (max-width:768px) {
    .show-more-container{
        margin-top: -70px;
    }
}

.show-more-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(236, 72, 153, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 8px rgba(236, 72, 153, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded{
    margin-top: 60px;
}

@media (max-width:768px) {
    .show-more-btn.expanded{
        margin-top: 120px;
    }
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.show-more-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}


















/*INSTAGRAM SECTION*/

/* INSTAGRAM SECTION */
.instagram-section {
    padding: 60px 2rem;
    background: linear-gradient(135deg, #ffeef0 0%, #f7fafc 50%, #e6fffa 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(240, 171, 252, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.instagram-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.instagram-header {
    text-align: center;
    margin-bottom: 80px;
}

.instagram-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.instagram-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* INSTAGRAM SECTION */
.instagram-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #ffeef0 0%, #f7fafc 50%, #e6fffa 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(240, 171, 252, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.instagram-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}




/* CTA Principal */
.instagram-cta-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.instagram-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.instagram-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instagram-smarphonepage {
    border-radius: 25px;
    width: 280px;
    object-fit: cover;
}

.instagram-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    box-shadow: 0 15px 35px rgba(238, 42, 123, 0.3);
    animation: instagram-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes instagram-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(238, 42, 123, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 20px 45px rgba(238, 42, 123, 0.4);
    }
}

@keyframes instagramPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(238, 42, 123, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 20px 45px rgba(238, 42, 123, 0.4);
    }
}
.instagram-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.instagram-floating-element {
    position: absolute;
    font-size: 24px;
    animation: instagram-float 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.instagram-floating-element.instagram-heart {
    top: -100%;
    right: 20%;
    animation-delay: 0s;
}

.instagram-floating-element.instagram-like {
    bottom: -100%;
    right: 15%;
    animation-delay: -1s;
}

.instagram-floating-element.instagram-share {
    bottom: -90%;
    left: 20%;
    animation-delay: -3s;
}

@media (max-width: 768px) {
    .instagram-floating-element.instagram-like {
        bottom: -80%;
        right: 20%;
        animation-delay: -1s;
    }
    
    .instagram-floating-element.instagram-share {
        bottom: -70%;
        left: 20%;
        animation-delay: -3s;
    }
}

@keyframes instagram-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-12px) rotate(3deg);
        opacity: 1;
    }
}

.instagram-cta-content{
    margin-top: 10px;
}

.instagram-cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ee2a7b 0%, #6228d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-cta-content p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.instagram-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(90deg, #f9ce3415 0%, #ee2a7b15 50%, #6228d715 100%);
    border-radius: 16px;
}

.instagram-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ee2a7b;
    margin-bottom: 4px;
}

.instagram-stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
}

.instagram-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(238, 42, 123, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-follow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.instagram-follow-button:hover::before {
    left: 100%;
}

.instagram-follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 42, 123, 0.4);
}

/* Posts Container */
.instagram-posts-container {
    margin-bottom: 80px;
}

.instagram-posts-header {
    text-align: center;
    margin-bottom: 48px;
}

.instagram-posts-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.instagram-posts-header p {
    font-size: 16px;
    color: var(--medium-gray);
}

.instagram-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.instagram-post-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
}

.instagram-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.instagram-post-card.instagram-featured {
    grid-row: span 2;
}

.instagram-post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-post-card.instagram-featured .instagram-post-image {
    aspect-ratio: 4/5;
}

.instagram-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.instagram-post-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.instagram-post-card:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-stats {
    display: flex;
    gap: 16px;
    color: white;
    font-weight: 600;
}

.instagram-post-content {
    padding: 16px;
}

.instagram-post-text {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-post-card.instagram-featured .instagram-post-text {
    font-size: 16px;
    -webkit-line-clamp: 3;
}

.instagram-post-time {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
}

.instagram-view-more-container {
    text-align: center;
}

.instagram-view-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.instagram-view-more-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.instagram-view-more-button:hover::before {
    opacity: 1;
}

.instagram-view-more-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(238, 42, 123, 0.3);
}

/* Benefits de Seguir */
.instagram-follow-benefits {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.instagram-follow-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.instagram-follow-benefits h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.instagram-follow-benefits h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    border-radius: 2px;
}

.instagram-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.instagram-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.instagram-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.instagram-benefit-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
    background: linear-gradient(135deg,  #f9ce34 0%,  #ee2a7b 50%, #6228d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-benefit-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.instagram-benefit-text p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Masonry Item Animation */
.instagram-masonry-item {
    opacity: 0;
    transform: translateY(30px);
    animation: instagram-fadeInUp 0.8s ease forwards;
}

@keyframes instagram-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple Effect */
.instagram-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transform: scale(0);
    animation: instagram-ripple-effect 0.6s ease-out;
    z-index: 100;
}

@keyframes instagram-ripple-effect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Burst Effect */
.instagram-burst-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,206,52,0.8) 0%, rgba(238,42,123,0.6) 50%, rgba(98,40,215,0.4) 100%);
    transform: translate(-50%, -50%);
    animation: instagram-burst-expand 0.6s ease-out forwards;
    pointer-events: none;
    z-index: -1;
}

@keyframes instagram-burst-expand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@media (max-width:768px) {
    
    .instagram-smarphonepage {
        border-radius: 25px;
        width: 180px;
        object-fit: cover;
        margin-top: 20px;
    }
    
    .instagram-posts-header{
        margin-bottom: 24px;
    }
    
    .instagram-cta-main{
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 17px;
        padding-top: 22px;
        grid-template-rows: 1fr 2fr;
        grid-template-columns: 1fr;
    }
    
    .instagram-post-card.instagram-featured {
        grid-column: span 2;
    }
    .instagram-posts-grid{
        grid-template-columns: repeat(2, 2fr);
        grid-template-rows: 1fr 1fr 1fr;
        gap: 12px;
    }
    
    .instagram-section{
        padding: 60px 0;
    }
    .instagram-benefits-grid{
        grid-template-columns: auto;
    }
    .instagram-follow-benefits{
        padding: 2rem 1rem 2rem 1rem;
    }
}











/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0px;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.cta-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

/* Contact Cards */
.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.contact-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.4;
}

.contact-arrow {
    color: var(--light-gray);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
    color: var(--primary-red);
    transform: translateX(4px);
}

.cards-header {
    text-align: center;
    margin-bottom: 24px;
}

.cards-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.cards-header p {
    font-size: 14px;
    color: var(--medium-gray);
}

@media (max-width:768px) {
    .cta-content{
        grid-template-columns: auto;
    }
    
    .cta-title{
        text-align: center;
    }
    
    .cta-text{
        padding: 0 10px;
    }
    
    .cta-features{
        align-items: center;
    }
}