/* Global Styles */
:root {
    --primary-color: #e60000;
    --primary-dark: #830000;
    --primary-light: #ff3333;
    --secondary-color: #f9f9f9;
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-dark: #222222;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --primary-yellow: #FFD700;
    --secondary-blue: #0066CC;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;



    /* Nova paleta sofisticada */
    --accent-primary: #e60000;
    --accent-light: #ff3333;
    --accent-dark: #830000;
    --accent-darker: #610000;
    
    /* Tons neutros refinados */
    --neutral-darkest: #23292F;
    --neutral-dark: #394046;
    --neutral-medium: #5E6A75;
    --neutral-light: #CCD2D8;
    --neutral-lightest: #F4F5F7;
    
    /* Tons de branco e preto */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --black: #14171A;
    
    /* Cores de interface/feedback */
    --success: #5D8C6F;
    --warning: #D4AB67;
    --error: #9E5757;
    
    /* Sombras refinadas */
    --shadow-sm: 0 2px 8px rgba(20, 23, 26, 0.05);
    --shadow-md: 0 4px 16px rgba(20, 23, 26, 0.08);
    --shadow-lg: 0 8px 30px rgba(20, 23, 26, 0.10);
    --shadow-xl: 0 15px 40px rgba(20, 23, 26, 0.12);
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Espaçamentos */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Fontes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3rem;
    
    /* Sutis padrões de fundo */
    --pattern-dots: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23394046' fill-opacity='0.03'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
    --pattern-grid: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23394046' stroke-width='1' stroke-opacity='0.03'/%3E%3C/svg%3E");

    /* Gradientes sutis */
    --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    --gradient-neutral: linear-gradient(135deg, var(--neutral-dark) 0%, var(--neutral-darkest) 100%);
    --gradient-overlay: linear-gradient(to bottom, transparent 0%, rgba(20, 23, 26, 0.8) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========== LOADER =========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.pump-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: loadingpulse 1.5s infinite alternate;
}

@keyframes loadingpulse {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background-color: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-yellow));
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; left: 100%; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light h2, 
.section-header.light p {
    color: var(--text-white);
}

.section-header.light h2::after {
    background-color: var(--text-white);
}

/* Botões adaptados das variáveis do CSS fornecido */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-flipcard {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    transition: var(--transition-normal);
}

.btn-outline-flipcard:hover {
    background-color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    color: var(--white);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .sobre-nos-info {
        flex-direction: column;
    }
    
    .sobre-nos-text, .sobre-nos-image {
        width: 100%;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .destaques-container {
        flex-direction: column;
        align-items: center;
    }
    
    .destaque-card {
        width: 100%;
        max-width: 450px;
    }
}

@media screen and (max-width: 768px) {
    .sobre-nos-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: var(--font-3xl);
    }
    
    .section-header p {
        font-size: var(--font-md);
    }
    
    .btn-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: var(--font-2xl);
    }
    
    .sobre-nos-text h3 {
        font-size: var(--font-xl);
    }
    
    .card-front, .card-back {
        padding: 20px;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-flipcard{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.btn-outline-flipcard:hover{
    background-color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    color: #ffffff;
}

.btn-light {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}


/* =========== HEADER =========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.3rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 0, 0, 0.02) 50%, 
        transparent 100%);
    pointer-events: none;
}

header.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.98) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0;
    border-bottom-color: rgba(230, 0, 0, 0.1);
}

.header-container {
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    position: relative;
    z-index: 2;
}

.logo {
    width: 50px;
    position: relative;
    z-index: 3;
}

.logo img {
    height: 38px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0 2px 8px rgba(230, 0, 0, 0.1));
}

header.scrolled .logo img {
    height: 35px;
    filter: drop-shadow(0 2px 12px rgba(230, 0, 0, 0.15));
}


.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    align-items: center;
    display: flex;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    position: relative;
    padding: 0.6rem 1.2rem;
    font-size: var(--font-sm);
    letter-spacing: 0.01em;
    margin-left: 0.5rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(230, 0, 0, 0.05) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

@media (max-width: 768px) {
    .main-nav ul{
        gap: 1rem;
    }
    .nav-link{
        margin-left: 0;
        padding: 0.5rem 1rem;
    }
}

.nav-link:hover, 
.nav-link.active {
    color: var(--accent-primary);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(230, 0, 0, 0.3);
}

.nav-link:hover::before, 
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 80%;
}

.btn-nav{
    display: flex;
}
.btn-nav-mobile{
    display: none;
    max-width: 100%;
}

@media (max-width:768px) {
    .btn-nav{
        display: none;
    }
    .btn-nav-mobile{
        display: flex;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span{
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn{
      display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.25);
        padding: 2rem 0;
        align-items: center;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link{
        transform: scale(1.1);
    }

}
.headerTextInstagram{
    background: linear-gradient(45deg, #f08a1d, #dc2743);
    color: transparent;
    background-clip: text;
}


/* =========== SOBRE & CARREIRA SECTION - DESIGN ELABORADO =========== */
.sobre-carreira-section {
    padding: 120px 0;
    background: var(--neutral-lightest);
    position: relative;
    overflow: hidden;
}

/* Elementos flutuantes de background */
.sobre-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.sobre-bg-elements .floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.06;
    font-size: 4rem;
    animation: float-around 25s infinite linear;
}

.sobre-bg-elements .icon-gas {
    top: 20%;
    left: 8%;
    animation-delay: -5s;
    font-size: 5rem;
}

.sobre-bg-elements .icon-star {
    top: 15%;
    right: 12%;
    animation-delay: -8s;
    font-size: 3.5rem;
}

.sobre-bg-elements .icon-users {
    bottom: 25%;
    left: 15%;
    animation-delay: -12s;
    font-size: 4.5rem;
}

.sobre-bg-elements .icon-award {
    top: 60%;
    right: 8%;
    animation-delay: -3s;
    font-size: 4rem;
}

.sobre-bg-elements .icon-heart {
    bottom: 15%;
    right: 25%;
    animation-delay: -15s;
    font-size: 3rem;
}

/* Header da seção */
.sobre-carreira-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.header-badge i {
    font-size: 1.1rem;
}

/* Wrapper principal */
.sobre-carreira-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Card da empresa */
.empresa-showcase {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(230, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.empresa-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.company-intro {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.intro-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.intro-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-text .text-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Valores da empresa */
.company-values {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-icon {
    background: var(--neutral-lightest);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}


/* Card de carreira */
.carreira-showcase {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    padding: 50px 40px 40px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carreira-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    transform: rotate(15deg);
    pointer-events: none;
}

.carreira-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.career-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.career-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-title p {
    opacity: 0.9;
    font-size: 1rem;
}


/* CTA Premium */
.cta-action-enhanced {
    position: relative;
    z-index: 1;
}

.btn-curriculo-premium {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 25px;
}

.btn-content {
    background: white;
    color: var(--text-color);
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-curriculo-premium:hover .btn-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon-left {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-text-content {
    flex: 1;
}

.btn-primary-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    line-height: 1.2;
}

.btn-sub-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-icon-right {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-curriculo-premium:hover .btn-icon-right {
    transform: translateX(5px);
}

/* Informações de segurança */
.cta-security-enhanced {
    display: flex;
    gap: 25px;
    opacity: 0.9;
}

.security-badge, .processing-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.security-badge i, .processing-time i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Curved divider */
.sobre-carreira-section .curved-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.sobre-carreira-section .curved-divider-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* Responsive para curved-divider-bottom na seção sobre */
@media (max-width: 768px) {
    .sobre-carreira-section .curved-divider-bottom {
        height: 30px;
        bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sobre-carreira-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-values {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sobre-carreira-section {
        padding: 80px 0;
    }
    
    .empresa-showcase {
        padding: 30px 20px;
    }
    
    .carreira-showcase {
        padding: 30px 20px 25px 20px;
    }
    
    .company-intro {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
    
    .carreira-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .career-icon {
        margin: 0 auto;
    }
    
    .cta-security-enhanced {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-content {
        padding: 18px 25px;
        gap: 18px;
    }
    
    .btn-icon-left {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .btn-primary-text {
        font-size: 1rem;
    }
    
    .btn-sub-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .carreira-showcase {
        padding: 25px 15px 20px 15px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .btn-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 22px 18px;
        border-radius: 12px;
    }
    
    .btn-text-content {
        order: -1;
    }
    
    .btn-primary-text {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .btn-sub-text {
        font-size: 0.8rem;
        opacity: 0.8;
    }
    
    .btn-icon-left {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
        margin: 0 auto;
    }
    
    .btn-icon-right {
        display: none;
    }
    
    .cta-security-enhanced {
        gap: 12px;
        margin-top: 15px;
    }
    
    .security-badge, .processing-time {
        font-size: 0.8rem;
    }
    
    .header-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .carreira-showcase {
        margin: 0 5px;
        padding: 20px 12px 18px 12px;
    }
    
    .btn-content {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .btn-primary-text {
        font-size: 0.95rem;
    }
    
    .btn-sub-text {
        font-size: 0.75rem;
    }
    
    .btn-icon-left {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* =========== HERO SECTION =========== */

/* Importação do Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Estilos da Seção Hero */
.hero {
    position: relative;
    margin-top: 65px; /* Altura do header flutuante */
    padding-top: 2rem; /* Padding interno mínimo */
    min-height: calc(100vh - 65px); /* Ajustar altura para compensar margin-top */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Ajustes responsivos para a seção hero */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px; /* Header ligeiramente menor em mobile */
        padding-top: 1.5rem;
        min-height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 55px; /* Header ainda menor em telas pequenas */
        padding-top: 1rem;
        min-height: calc(100vh - 55px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Melhorias de performance para vídeo */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Garantir que o vídeo seja responsivo */
    max-width: 100%;
    height: auto;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 41, 47, 0.1);
    z-index: -1;
}

.hero-container {
    position: relative;
    padding: var(--space-2xl) 0;
}

.hero-content {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: var(--space-xl);
}

.hero-text {
    flex: 1;
    max-width: 480px;
    position: relative;
    z-index: 1;
    /* padding: var(--space-xl); */
    padding: var(--space-lg);
    background-color: transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    font-size: var(--font-4xl);
    font-weight: 800;
    line-height: 1.2;
    color: var(--neutral-darkest);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero h2 {
    font-size: var(--font-lg);
    font-weight: 400;
    color: var(--neutral-medium);
    margin-bottom: var(--space-xl);
}

.text-highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: rgba(230, 0, 0, 0.15);
    z-index: -1;
    transform: skewX(-10deg);
}

.text-soft-highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .hero-cta{
        margin-bottom: 2rem;
    }
}

/* Botões já definidos nas suas vars de CSS */
.btn i {
    margin-left: var(--space-xs);
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(5px);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: translateY(-20px);
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.image-wrapper:hover .main-image {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    gap: var(--space-xs);
    animation: float 5s ease-in-out infinite;
}

.badge-primary {
    bottom: 20px;
    left: -20px;
    background-color: var(--accent-primary);
    color: var(--white);
}

.badge-secondary {
    top: 30px;
    right: -15px;
    background-color: var(--white);
    color: var(--neutral-darkest);
}

.badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
}

.badge-secondary .badge-icon {
    background-color: var(--accent-primary);
    color: var(--white);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text span {
    font-size: var(--font-xs);
}

.badge-text strong {
    font-size: var(--font-sm);
    font-weight: 700;
}

/* =========== HERO COMPACT CARD =========== */
.hero-compact-card {
    position: absolute;
    bottom: 100px;
    right: 40px;
    width: 380px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(230, 0, 0, 0.3);
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.compact-card-content {
    position: relative;
    z-index: 2;
}

.compact-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-darkest);
    margin-bottom: 12px;
    line-height: 1.3;
}

.compact-header p {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.5;
    opacity: 1;
}

.compact-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-compact:hover::before {
    left: 100%;
}

.btn-compact-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-compact-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.4);
}

.btn-compact-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1.5px solid rgba(230, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-compact-outline:hover {
    background: rgba(230, 0, 0, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-compact i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-compact:hover i {
    transform: translateX(3px);
}

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

.decoration-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(230, 0, 0, 0.2);
    border-radius: 50%;
    animation: decorationRotate 20s linear infinite;
}

.decoration-circle::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.6;
}

@keyframes decorationRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.decoration-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 20px;
    background-image: radial-gradient(circle, rgba(230, 0, 0, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
    animation: decorationPulse 4s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Responsive para o card compacto */
@media (max-width: 1024px) {
    .hero-compact-card {
        right: 20px;
        width: 340px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero-compact-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 60%;
        max-width: none;
        margin: 0 auto 40px;
        transform: none !important;
        animation: none;
    }
    
    .hero-compact-card:hover {
        transform: none !important;
    }
    
    .compact-header h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .compact-header p {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-compact-card {
        width: 100%;
        margin: 0 20px 40px;
        padding: 24px 20px;
    }
    
    .compact-header h3 {
        font-size: 1.2rem;
    }
    
    .btn-compact {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}


.hero-scroll {
    position: absolute;
    bottom: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    font-size: var(--font-sm);
    opacity: 0.9;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 5;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: white;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        border-left: none;
        border-bottom: 4px solid var(--accent-primary);
        margin-bottom: 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .badge-primary {
        bottom: 20px;
        left: 20px;
    }
    
    .badge-secondary {
        top: 20px;
        right: 20px;
    }
    
    .image-wrapper {
        transform: translateY(0);
        margin-bottom: var(--space-xl);
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: var(--font-3xl);
    }
    
    .hero h2 {
        font-size: var(--font-lg);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .badge {
        display: none;
    }
}

.sobre-nos-section {
    padding: 100px 0;
    background-color: var(--neutral-lightest);
    background-image: var(--pattern-dots);
    position: relative;
    overflow: hidden;
}

.sobre-nos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    color: var(--neutral-darkest);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-primary);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: var(--font-lg);
    color: var(--neutral-medium);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Conteúdo principal */
.sobre-nos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-nos-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.sobre-nos-text {
    flex: 1;
    min-width: 300px;
}

.sobre-nos-text h3 {
    font-size: var(--font-2xl);
    color: var(--accent-primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.sobre-nos-text h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background-color: var(--accent-primary);
    border-radius: var(--radius-sm);
}

.sobre-nos-text p {
    font-size: var(--font-md);
    color: var(--neutral-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.sobre-nos-image {
    flex: 1;
    min-width: 300px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-sm);
    box-shadow: var(--shadow-md);
}

/* Estatísticas */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    transition: var(--transition-normal);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent-light);
    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: var(--font-3xl);
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-item p {
    font-size: var(--font-md);
    color: var(--neutral-medium);
    font-weight: 500;
}

/* Destaques Section */
.destaques-section {
    margin: 60px 0;
}

.destaques-title {
    font-size: var(--font-2xl);
    color: var(--neutral-darkest);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-justify: center;
}

.destaques-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-primary);
    border-radius: var(--radius-full);
}

.destaques-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.destaque-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 300px;
    perspective: 1000px;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-front {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
    justify-content: center;
    text-align: center;
}

.icon-container {
    width: 70px;
    height: 70px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.icon-container i {
    font-size: 30px;
    color: var(--white);
}

.destaque-card:hover .icon-container {
    transform: translateY(-5px);
    background-color: var(--accent-primary);
}

.card-front h4 {
    font-size: var(--font-lg);
    color: var(--neutral-darkest);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-front p {
    font-size: var(--font-md);
    color: var(--neutral-medium);
    margin-bottom: 20px;
}

.card-back h4 {
    font-size: var(--font-lg);
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-back p {
    font-size: var(--font-sm);
    color: var(--neutral-light);
    margin-bottom: 20px;
    text-align: center;
}

.card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}

.card-back ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
    font-size: var(--font-sm);
}

.card-back ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

.btn-saiba-mais {
    background: none;
    border: none;
    color: var(--accent-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-saiba-mais::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: var(--transition-normal);
}

.btn-saiba-mais:hover::after {
    width: 100%;
}




/* Serviços Section */
.servicos {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.servico-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f09433, #dc2743);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.servico-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.servico-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Locais Section - REDESENHADO */
.section-localizacoes {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

@media (max-width:768px) {
    .section-localizacoes{
        padding: 40px 0;
    }
}

.localizacoes-mapa-visual {
    position: relative;
    margin-bottom: 60px;
    border-radius: var(--radius-lg);
    background-color: var(--neutral-lightest);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.mapa-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.mapa-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.mapa-header h3 {
    font-size: var(--font-2xl);
    color: var(--neutral-darkest);
    margin: 0;
    font-weight: 600;
}

.localizacoes-busca-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: space-between;
    align-items: center;
}

.busca-container {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 600px;
}

.busca-input-wrapper {
    position: relative;
    flex: 1;
}

.busca-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-medium);
}

.busca-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 45px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-light);
    font-size: var(--font-md);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.busca-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.btn-busca {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background-color: var(--accent-primary);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-busca:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filtro-cidades {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filtro-title {
    font-weight: 600;
    color: var(--neutral-dark);
}

.filtro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip-cidade {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background-color: var(--white);
    color: var(--neutral-dark);
    border: 1px solid var(--neutral-light);
    font-size: var(--font-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chip-cidade:hover, .chip-cidade.active {
    background-color: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.regiao {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.regiao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: var(--neutral-darkest);
    color: white;
}

.regiao-header h3 {
    margin: 0;
    font-size: var(--font-xl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.regiao-header h3 i {
    color: var(--accent-primary);
}

.contador-regiao {
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 600;
}

.regiao-postos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.regiao-grid {
    grid-template-columns: repeat(2, 1fr);
}

.todos-postos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
}

.regiao-postos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.posto-card-novo {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal), opacity 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 60px; /* Espaço para o footer */
}

.posto-card-novo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.posto-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
    position: relative;
}

.posto-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: var(--font-lg);
    color: var(--neutral-darkest);
    font-weight: 600;
}

.posto-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.posto-info-novo {
    padding: 1.25rem 1.5rem;
    flex-grow: 1;
}

.posto-endereco {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.posto-endereco i {
    color: var(--accent-primary);
    font-size: var(--font-lg);
    margin-top: 0.25rem;
}

.posto-endereco p {
    margin: 0;
    color: var(--neutral-medium);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.posto-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--neutral-light);
    background-color: var(--neutral-lightest);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
}

.btn-como-chegar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: var(--font-sm);
    transition: var(--transition-fast);
}

.btn-como-chegar:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Botão compacto para mostrar mais postos */
.btn-mostrar-mais-compacto {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    border: 1px solid var(--neutral-light);
    color: var(--neutral-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 1rem auto;
    box-shadow: var(--shadow-sm);
}

/* Animação de pulsação para o botão Ver Mais quando clicado */
@keyframes pulse-border {
    0% {
        border-color: var(--neutral-light);
    }
    50% {
        border-color: var(--accent-primary);
    }
    100% {
        border-color: var(--neutral-light);
    }
}

.btn-ver-mais.pulsing {
    animation: pulse-border 1.5s infinite;
}

.btn-ver-mais {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border: 2px dashed var(--neutral-light);
    color: var(--neutral-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-ver-mais:hover {
    background-color: var(--neutral-lightest);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-ver-mais:active {
    transform: translateY(-1px);
}

.btn-ver-mais.expandido {
    background-color: var(--neutral-lightest);
    border-style: solid;
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .mapa-header {
        flex-direction: column;
        text-align: center;
    }
    
    .localizacoes-busca-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .busca-container {
        max-width: 100%;
    }
    
    .filtro-cidades {
        justify-content: center;
        align-items: stretch;
    }
    
    .filtro-title {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .filtro-chips {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
}

@media (max-width: 768px) {
    .regiao-postos {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .regiao-grid {
        grid-template-columns: 1fr;
    }
    
    .busca-container {
        flex-direction: column;
    }
    
    .mapa-header h3 {
        font-size: var(--font-xl);
    }

    /* Cards mais compactos em smartphones */
    .posto-card-novo {
        padding-bottom: 50px; /* Reduzido de 60px */
        border-radius: var(--radius-md); /* Reduzido de radius-lg */
    }
    
    .posto-header {
        padding: 1rem 1.2rem; /* Reduzido de 1.25rem 1.5rem */
    }
    
    .posto-header h4 {
        font-size: var(--font-md); /* Reduzido de font-lg */
        margin-bottom: 0.4rem; /* Reduzido de 0.5rem */
    }
    
    .posto-tag {
        padding: 0.2rem 0.6rem; /* Reduzido de 0.25rem 0.75rem */
        font-size: 0.7rem; /* Reduzido de font-xs */
    }
    
    .posto-info-novo {
        padding: 1rem 1.2rem; /* Reduzido de 1.25rem 1.5rem */
    }
    
    .posto-endereco {
        gap: 0.8rem; /* Reduzido de 1rem */
    }
    
    .posto-endereco i {
        font-size: var(--font-md); /* Reduzido de font-lg */
        margin-top: 0.2rem; /* Reduzido de 0.25rem */
    }
    
    .posto-endereco p {
        font-size: 0.8rem; /* Reduzido de font-sm */
        line-height: 1.4; /* Reduzido de 1.6 */
    }
    
    .posto-footer {
        padding: 0.8rem 1.2rem; /* Reduzido de 1rem 1.5rem */
        height: 50px; /* Reduzido de 60px */
    }
    
    .btn-como-chegar {
        font-size: 0.8rem; /* Reduzido de font-sm */
        gap: 0.4rem; /* Reduzido de 0.5rem */
    }
    
    .todos-postos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Ajustes para os botões "mostrar mais" em mobile */
    .btn-mostrar-mais-compacto {
        padding: 0.4rem 0.8rem; /* Reduzido */
        font-size: 0.8rem; /* Reduzido */
        gap: 0.4rem; /* Reduzido */
    }
    
    .btn-ver-mais {
        padding: 0.6rem 1.2rem; /* Reduzido */
        font-size: 0.9rem; /* Reduzido */
        gap: 0.4rem; /* Reduzido */
    }
}

/* Smartphones menores - Cards ainda mais compactos */
@media (max-width: 480px) {
    .posto-card-novo {
        padding-bottom: 45px; /* Ainda menor */
        margin-bottom: 0.8rem;
    }
    
    .posto-header {
        padding: 0.8rem 1rem;
    }
    
    .posto-header h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .posto-tag {
        padding: 0.15rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .posto-info-novo {
        padding: 0.8rem 1rem;
    }
    
    .posto-endereco {
        gap: 0.6rem;
    }
    
    .posto-endereco i {
        font-size: 0.9rem;
    }
    
    .posto-endereco p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .posto-footer {
        padding: 0.6rem 1rem;
        height: 45px;
    }
    
    .btn-como-chegar {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .regiao-postos {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .todos-postos-grid {
        gap: 0.8rem;
        padding: 0.8rem;
    }
}


/* =========== BAHIA MAP SECTION - ENHANCED =========== */
.bahia-map-section {
    padding-top: 1rem;
    position: relative;
    overflow: hidden;
    justify-content: space-around;
    width: 100%;
}

.headermap{
    background-color: rgba(255, 255, 255, 0.85);
    position: relative;
    border-radius: 30px;
    z-index: 2;
    padding: 0.5rem;
}

@keyframes floatAround {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
    100% { transform: translate(30px, -20px); }
}

.map-floating-card {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    margin-left: 1rem;
    width: 100%;
    max-width: 250px; /* Limitar largura */
}

@media (max-width:768px) {
    .map-floating-card{
        display: none;
    }
}

.location-stats {
    grid-column: 1;
}

.nearest-location {
    grid-column: 3;
}

.bahia-map-interactive {
    position: relative;
    max-width: fit-content;
    box-shadow: none; /* Removendo a sombra para não conflitar com o mapa */
    float: right;
}

.mapMarkerIcon{
    color: var(--accent-light);
    text-shadow: 0 0 3px #000;
}

.mapMarkerIconFlagship{
    color: var(--accent-light);
    text-shadow: 0 0 3px #000;
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: var(--space-lg);
    height: 100%;
    /* width: 120%; */
}

.card-glass h3 {
    color: var(--neutral-darkest);
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.card-glass h3::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: var(--accent-primary);
    bottom: -8px;
    left: 0;
    border-radius: var(--radius-full);
}

.stats-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.stat-pill {
    background: var(--white);
    color: var(--neutral-darkest);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--font-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-pill i {
    color: var(--accent-primary);
}

.region-distribution {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-lg);
}

.region-distribution h4 {
    color: var(--neutral-darkest);
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-family: 'Montserrat', sans-serif;
}

.region-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.region-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.region-name {
    width: 70px;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--neutral-dark);
}

.region-bar-container {
    flex: 1;
    height: 12px;
    background: var(--neutral-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.region-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill-width, 0%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
    border-radius: var(--radius-full);
    animation: barFill 1.5s ease forwards;
}

.region-value {
    width: 30px;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--accent-primary);
    text-align: right;
}

.map-zoom-controls {
    position: relative;
    bottom: var(--space-lg); /* Movido para baixo */
    right: var(--space-md);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    float: right;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--neutral-dark);
    font-size: var(--font-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 4;
}

.zoom-btn:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: scale(1.1);
}

.map-center-button-container {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 10;
}

.center-btn {
    width: 100px;
    height: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 540;
    border-radius: 15px;
    background: var(--white);
    color: var(--neutral-dark);
    font-size: var(--font-md);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 4;
}

.center-btn:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: scale(1.05);
}

.btn-rounded {
    border-radius: 50px;
    width: 100%;
    justify-content: center;
}

.popular-cities h4 {
    font-size: var(--font-sm);
    color: var(--neutral-dark);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.city-pill {
    background: var(--white);
    color: var(--neutral-dark);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: var(--font-xs);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid var(--neutral-light);
}

.city-pill:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-primary);
}

.curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 3;
}

.curved-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Curved divider bottom - genérico */
.curved-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.curved-divider-bottom svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Responsive para curved-divider-bottom genérico */
@media (max-width: 768px) {
    .curved-divider-bottom {
        height: 30px;
        bottom: 0;
    }
}

.map-container-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 1rem;
    min-height: 700px; /* Aumentado para baixar mais a visualização do mapa */
    margin-top: 30px; /* Adicionado para mover o mapa mais para baixo */
}

.map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bahia-map-container {
    width: 100%;
    height: 100%;
    position: absolute;
}

.map-content {
    position: relative;
    width: 100%;
}

.map-interactive-container {
    position: relative;
    height: 500px; /* Altura definida para o container */
    width: 100%;
    margin-top: 20px;
    pointer-events: none;
}

/* Para garantir visibilidade do conteúdo sobre o mapa */
.card-glass {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
}

.map-center-button-container {
    position: relative;
    z-index: 3;
}

/* =========== INSTAGRAM SECTION - ENHANCED =========== */
.instagram-section {
    background-color: var(--white);
    padding: var(--space-3xl) 0 0;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}


.insta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    color: var(--accent-primary);
    opacity: 0.1;
    font-size: 3rem;
    animation: float-around 20s infinite linear;
}

.icon-heart {
    top: 15%;
    left: 10%;
    animation-delay: -5s;
    font-size: 4rem;
}

.icon-comment {
    top: 30%;
    right: 15%;
    animation-delay: -8s;
    font-size: 3.5rem;
}

.icon-share {
    top: 70%;
    left: 20%;
    animation-delay: -12s;
}

.icon-save {
    top: 60%;
    right: 10%;
    animation-delay: -15s;
}

.icon-camera {
    top: 20%;
    left: 50%;
    animation-delay: -10s;
    font-size: 4.5rem;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0);
        opacity: 0.1;
    }
    25% {
        transform: translate(20px, 10px) rotate(20deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(0, 20px) rotate(0);
        opacity: 0.1;
    }
    75% {
        transform: translate(-20px, 10px) rotate(-20deg);
        opacity: 0.15;
    }
    100% {
        transform: translate(0, 0) rotate(0);
        opacity: 0.1;
    }
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: var(--space-sm);
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 1px;
}

.instagram-phone-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.phone-frame {
    width: 420px;
    height: 800px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    border: 10px solid var(--neutral-darkest);
}

.phone-header {
    padding: var(--space-sm);
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-sm);
    font-size: 12px;
    color: var(--neutral-dark);
}

.status-icons {
    display: flex;
    gap: 5px;
}

.instagram-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-light);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
}

.profile-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-darkest);
}

.app-actions {
    display: flex;
    gap: 15px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: var(--space-md) 0;
}

.profile-stats .stat {
    text-align: center;
}

.stat-value {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-darkest);
}

.stat-label {
    font-size: 12px;
    color: var(--neutral-medium);
}

.profile-bio {
    padding: 0 var(--space-md) var(--space-md);
}

.bio-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-darkest);
    margin-bottom: 2px;
}

.bio-text {
    font-size: 14px;
    color: var(--neutral-dark);
    margin-bottom: 2px;
}

.bio-link a {
    font-size: 14px;
    color: #1976d2;
    font-weight: 500;
}

.profile-buttons {
    display: flex;
    gap: 8px;
    padding: 0 var(--space-md) var(--space-md);
}

.follow-btn {
    flex: 1;
    padding: 7px 0;
    border-radius: 8px;
    background: #0095f6;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.message-btn {
    flex: 1;
    padding: 7px 0;
    border-radius: 8px;
    background: var(--neutral-lightest);
    color: var(--neutral-darkest);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.more-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--neutral-lightest);
    color: var(--neutral-darkest);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

.story-highlights {
    display: flex;
    padding: 0 var(--space-md);
    gap: 15px;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.story-highlights::-webkit-scrollbar {
    display: none;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.highlight-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
}

.highlight-img::before {
    content: '';
    position: absolute;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    background: var(--white);
}

.highlight-img i {
    position: relative;
    z-index: 2;
    color: var(--neutral-darkest);
    font-size: 24px;
}

.highlight span {
    font-size: 12px;
    color: var(--neutral-dark);
}

.phone-content {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
}

.phone-content::-webkit-scrollbar {
    display: none;
}

.content-tabs {
    display: flex;
    border-top: 1px solid var(--neutral-light);
}

.tab {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-sm) 0;
    color: var(--neutral-medium);
    cursor: pointer;
}

.tab.active {
    color: var(--neutral-darkest);
    border-top: 1px solid var(--neutral-darkest);
    margin-top: -1px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.overlay-stats {
    display: flex;
    gap: 20px;
}

.overlay-stats .stat {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.phone-home-indicator {
    width: 40%;
    height: 5px;
    background: var(--neutral-darkest);
    border-radius: 3px;
    margin: var(--space-sm) auto;
}

.insta-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 420px;
}

.insta-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.join-us {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: var(--space-lg);
}

.card-content {
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(45deg, #f09433, #dc2743);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-md);
    color: var(--white);
    font-size: 24px;
}

.insta-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: var(--font-xl);
    color: var(--neutral-darkest);
    margin-bottom: var(--space-sm);
}

.insta-card p {
    color: var(--neutral-medium);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.hashtag {
    background: var(--neutral-lightest);
    color: #dc2743;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: var(--font-xs);
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
}

.hashtag:hover {
    background: #dc2743;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-follow {
    background: linear-gradient(45deg, #f09433, #dc2743);
    padding: 12px 24px;
}

.latest-post {
    background: var(--white);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid var(--neutral-light);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-darkest);
}

.post-location {
    font-size: 12px;
    color: var(--neutral-medium);
}

.post-more {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.featured-post-img {
    width: 100%;
    height: 260px;
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.action-btn:hover {
    color: #dc2743;
}

.post-likes {
    padding: 0 var(--space-md);
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-darkest);
}

.post-caption {
    padding: var(--space-xs) var(--space-md);
    font-size: 14px;
    line-height: 1.4;
}

.caption-author {
    font-weight: 600;
    color: var(--neutral-darkest);
    margin-right: 5px;
}

.caption-text {
    color: var(--neutral-dark);
}

.post-time {
    padding: var(--space-xs) var(--space-md);
    font-size: 10px;
    color: var(--neutral-medium);
    letter-spacing: 0.5px;
}

.add-comment {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--neutral-light);
}

.add-comment i {
    font-size: 24px;
    color: var(--neutral-medium);
    margin-right: 10px;
}

.add-comment input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--neutral-dark);
}

.add-comment button {
    background: transparent;
    border: none;
    color: #0095f6;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.5;
}

.user-gallery {
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: var(--font-2xl);
    color: var(--neutral-darkest);
    margin-bottom: var(--space-xs);
}

.gallery-header p {
    color: var(--neutral-medium);
    font-size: var(--font-md);
}

.user-posts-carousel {
    position: relative;
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--neutral-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
    transition: var(--transition-normal);
    border: none;
}

.carousel-control:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: scale(1.1);
}

.user-posts-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.user-posts-track::-webkit-scrollbar {
    display: none;
}

.user-post {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.user-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-md);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.username {
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 14px;
}

.post-image {
    width: 100%;
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-text {
    padding: var(--space-md);
    color: var(--neutral-dark);
    font-size: 14px;
    line-height: 1.5;
}

.btn-primary-forinsta {
    background: linear-gradient(45deg, #f08a1d, #dc2743);
    color: var(--text-white);
}

.btn-primary-forinsta:hover {
    background-color: linear-gradient(45deg, #f08a1d, #dc2743);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}


/* Depoimentos Section - Redesenhada */

/* Depoimentos Section - Redesenhada */
.feedback-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-container-new {
    max-width: 1100px;
    margin: 0 auto 40px;
    background-color: var(--neutral-lightest);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonials-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.rating-summary {
    text-align: center;
    background-color: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-primary);
}

.rating-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neutral-darkest);
    line-height: 1;
    margin-bottom: 5px;
}

.rating-stars {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.rating-count {
    color: var(--neutral-dark);
    font-size: 0.9rem;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 20px;
    padding: 10px 0;
}

.testimonial-card-new {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--accent-primary);
    flex: 0 0 360px;
    height: auto;
    min-height: 280px;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.rating-date {
    margin-left: auto;
    color: var(--neutral-medium);
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    font-style: italic;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--neutral-light);
    padding-top: 15px;
    position: relative;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-primary);
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-darkest);
}

.verification-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 3px;
}

.verification-badge i {
    font-size: 0.85rem;
}

.posto-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    background-color: var(--accent-light);
    color: var(--white);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--neutral-dark);
    border: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.control-btn:hover:not(:disabled) {
    background-color: var(--accent-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background-color: var(--accent-primary);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--accent-light);
}

.testimonials-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--neutral-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-dark);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .testimonial-card-new {
        flex: 0 0 300px;
        min-height: 300px;
    }
    
    .testimonials-container-new {
        padding: 30px 20px;
    }
    
    .rating-summary {
        padding: 15px 25px;
    }
    
    .rating-big {
        font-size: 2.5rem;
    }
    
    .testimonials-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .testimonial-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0;
        gap: 0;
        pointer-events: none;
        z-index: 15;
    }

    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        pointer-events: auto;
        position: relative;
        box-shadow: var(--shadow-md);
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }

    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .testimonial-dots {
        position: absolute;
        bottom: -410px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }

}


/* Versão 5 - Formulário Centralizado Clean */
.contato-v5 {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: url('https://rededepostoslider.com/wp-content/uploads/2025/03/map_1.png') no-repeat center;
    background-color: rgba(0, 0, 0, 0);
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
}

.contato-v5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section-header-v5 {
    text-align: center;
    margin-bottom: 30px;
}

.section-header-v5 h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neutral-darkest);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-v5 h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

.section-header-v5 p {
    font-size: 1.2rem;
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
}

.contato-wrapper-v5 {
    max-width: 700px;
    margin: 0 auto;
}

.form-card-v5 {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    border: 1px solid rgba(230, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card-v5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.form-title-v5 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--neutral-darkest);
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group-v5 {
    margin-bottom: 25px;
    position: relative;
}

.form-group-v5 input,
.form-group-v5 textarea,
.form-group-v5 select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
    background-color: var(--white);
    color: var(--neutral-dark);
}

.form-group-v5 input:focus,
.form-group-v5 textarea:focus,
.form-group-v5 select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-submit-v5 {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.form-submit-v5::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
}

.form-submit-v5:hover::before {
    left: 100%;
}

.form-submit-v5:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info-v5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.email-section-v5 {
    text-align: center;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-light);
    transition: var(--transition-normal);
}

.email-section-v5:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.email-icon-v5 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
}

.email-icon-v5 i {
    font-size: 1.5rem;
    color: var(--white);
}

.email-title-v5 {
    font-size: 1.2rem;
    color: var(--neutral-darkest);
    font-weight: 600;
    margin-bottom: 10px;
}

.email-address-v5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.email-address-v5:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-section-v5 {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.social-item-v5 {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-light);
    transition: var(--transition-normal);
    min-width: 140px;
}

.social-item-v5:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.social-icon-v5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.facebook-v5 .social-icon-v5 {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.instagram-v5 .social-icon-v5 {
    background: linear-gradient(135deg, #e4405f 0%, #f093fb 50%, #56c0e0 100%);
}

.social-item-v5:hover .social-icon-v5 {
    transform: scale(1.1) rotate(5deg);
}

.social-name-v5 {
    font-size: 0.95rem;
    color: var(--neutral-darkest);
    font-weight: 600;
}

.divider-v5 {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header-v5 h2 {
        font-size: 2.5rem;
    }

    .form-card-v5 {
        padding: 35px 25px;
    }

    .social-section-v5 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-item-v5 {
        width: 100%;
        max-width: 250px;
    }

    .email-section-v5 {
        padding: 25px 30px;
    }
}

/* CTA Section - Redesenhada */
.cta {
    padding: 100px 0;
    background-color: var(--neutral-lightest);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.cta-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.cta-content {
    flex: 1;
    max-width: 650px;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-darkest);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    margin-bottom: 40px;
}

.cta-description p {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--accent-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    color: var(--neutral-darkest);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--neutral-medium);
    margin: 0;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.btn-curriculo {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--accent-primary);
    color: var(--white);
    padding: 5px 5px 5px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--accent-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-curriculo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-dark);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-curriculo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-curriculo:hover::after {
    width: 100%;
}

.btn-curriculo:hover .btn-icon {
    transform: rotate(90deg);
}

.cta-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.cta-security i {
    color: var(--success);
}

.cta-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.main-cta-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-stats {
    position: absolute;
    left: -30px;
    bottom: 40px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-left: 5px solid var(--accent-primary);
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.stat-number small {
    font-size: 1rem;
    font-weight: 500;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

@media (max-width: 1200px) {
    .cta-wrapper {
        flex-direction: column;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-benefits {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-action {
        align-items: center;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .cta-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-stats {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .btn-curriculo {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stat {
        text-align: center;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--neutral-darkest) 0%, var(--bg-dark) 100%);
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-info {
    padding-right: 40px;
}

.footer-info p {
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    padding: 2px 0;
}

.footer-links ul li a:hover {
    color: var(--text-white);
    transform: translateX(8px);
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

/* Footer responsividade para tablet */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 3D Effects */
.card-destaque, 
.projeto-card, 
.servico-card, 
.depoimento-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-icon, 
.servico-icon, 
.social-icon,
.btn {
    transform: translateZ(20px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .contato-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        text-align: center;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .depoimento-card {
        min-width: 280px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contato-social {
        justify-content: center;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
}

/* ===== ANIMAÇÕES PARA FEEDBACK DO FORMULÁRIO ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 50px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* ===== ESTILOS PARA VALIDAÇÃO DE FORMULÁRIO ===== */
.form-group-v5 input:focus.valid,
.form-group-v5 textarea:focus.valid,
.form-group-v5 select:focus.valid {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3) !important;
}

.form-group-v5 input.error,
.form-group-v5 textarea.error,
.form-group-v5 select.error {
    border-color: #f44336 !important;
    box-shadow: 0 0 5px rgba(244, 67, 54, 0.3) !important;
}

.field-error {
    animation: slideDown 0.3s ease-out;
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
}

/* ===== TOAST NOTIFICATIONS ===== */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-toast.success {
    background-color: #4CAF50;
}

.custom-toast.error {
    background-color: #f44336;
}

.custom-toast.info {
    background-color: #2196F3;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== BOTÃO DE ENVIO COM LOADING ===== */
.form-submit-v5 .fa-spinner {
    margin-right: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== SUCCESS MESSAGE CONTAINER ===== */
.success-message {
    animation: fadeInUp 0.6s ease-out;
}

.success-message .fa-check {
    animation: bounce 1s ease-out;
}

/* ===== RESPONSIVO PARA TOAST NOTIFICATIONS ===== */
@media (max-width: 480px) {
    .custom-toast {
        left: 10px !important;
        right: 10px !important;
        top: 10px !important;
        min-width: auto !important;
        max-width: none !important;
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease-in-out !important;
    }
    
    .custom-toast.show {
        transform: translateY(0) !important;
    }
    
    .toast-content {
        font-size: 14px;
    }
}
