/* 
  Focalizze Marketing Digital - Landing Page Stylesheet
  Author: Claude
  Colors: #F6CD59 (Primary Yellow), #2D2D2D (Dark)
*/

/* ---------- Base Styles ---------- */
:root {
    --primary: #F6CD59;
    --primary-light: #FFE8A8;
    --primary-dark: #E0B53B;
    --dark: #2D2D2D;
    --dark-80: rgba(45, 45, 45, 0.8);
    --dark-50: rgba(45, 45, 45, 0.5);
    --light: #FFFFFF;
    --light-80: rgba(255, 255, 255, 0.8);
    --gray: #F5F5F5;
    --gray-dark: #E0E0E0;
    --text: #4A4A4A;
    --text-light: #6F6F6F;
    --accent: #FF5959;
    --success: #4CAF50;
    --warning: #FFC107;
    --info: #2196F3;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 5px;
    --radius: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--light);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    transition: background-color 0.5s ease;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark) 70%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    position: relative;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

ul {
    list-style: none;
}

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

a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    box-shadow: var(--shadow), 0 5px 15px rgba(246, 205, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--dark);
    box-shadow: var(--shadow-lg), 0 7px 25px rgba(246, 205, 89, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--dark) 0%, #444444 100%);
    color: var(--light);
    box-shadow: var(--shadow);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    box-shadow: var(--shadow-sm);
    /* overflow: visible; */
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.btn-outline:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8080 100%);
    color: var(--light);
    box-shadow: var(--shadow), 0 5px 15px rgba(255, 89, 89, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 7px 25px rgba(255, 89, 89, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.divider {
    width: 0; /* Oculto, usando o estilo de gradiente acima */
    height: 0;
    background-color: transparent;
    margin: 0;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ---------- Header & Navigation ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--light);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-80), var(--dark));
    opacity: 0.9;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 205, 89, 0.1) 0%, transparent 100%);
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: var(--light);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    position: relative;
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Nova abordagem para o efeito do texto Focalizze - abordagem baseada em opacidade e text-shadow */
.focalizze-text {
    color: var(--primary);
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    font-weight: inherit;
}

/* Efeito simplificado que usa apenas opacidade e text-shadow */
@keyframes textFocus {
    0% { 
        opacity: 0; 
        text-shadow: 0 0 100px var(--primary);
        color: transparent;
    }
    20% { 
        opacity: 0.2; 
        text-shadow: 0 0 80px var(--primary);
        color: rgba(246, 205, 89, 0.2);
    }
    40% { 
        opacity: 0.4; 
        text-shadow: 0 0 60px var(--primary);
        color: rgba(246, 205, 89, 0.4);
    }
    60% { 
        opacity: 0.6; 
        text-shadow: 0 0 40px var(--primary);
        color: rgba(246, 205, 89, 0.6);
    }
    80% { 
        opacity: 0.8; 
        text-shadow: 0 0 20px var(--primary);
        color: rgba(246, 205, 89, 0.8);
    }
    100% { 
        opacity: 1; 
        text-shadow: 0 0 0px var(--primary);
        color: var(--primary);
    }
}

.focalizze-text {
    animation: textFocus 2s ease-out forwards;
}

/* Efeito da linha amarela que expande da esquerda para a direita */
.focalizze-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    animation: expandLine 0.8s ease forwards;
    animation-delay: 2s; /* Começa após a animação de foco terminar */
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin: 0 auto 50px;
    max-width: 700px;
    color: var(--light-80);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
    transform: translateY(20px);
    min-width: 200px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-scroll span {
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll .scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-80);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-scroll .scroll-icon::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ---------- Sobre Section ---------- */
.sobre {
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    opacity: 0.1;
    top: -150px;
    right: -150px;
    border-radius: 50%;
    z-index: -1;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.sobre-text {
    flex: 1;
    position: relative;
}

.sobre-text p {
    position: relative;
    z-index: 1;
}

.sobre-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.sobre-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    top: 20px;
    right: -20px;
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.6;
    transition: var(--transition);
}

.sobre-image:hover::before {
    top: 15px;
    right: -15px;
}

.sobre-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: translateY(0);
    max-width: 100%;
    object-fit: cover;
}

.sobre-image:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.sobre-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.sobre .card {
    width: 220px;
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    background-color: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sobre .card.show {
    opacity: 1;
    transform: translateY(0);
}

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

.sobre .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(246, 205, 89, 0.1) 0%, transparent);
    transition: var(--transition);
    z-index: -1;
    pointer-events: none;
}

.sobre .card:hover::before {
    height: 100%;
}

.sobre .card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.sobre .card h3 {
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.sobre .card:hover h3 {
    color: var(--primary-dark);
}

.sobre .card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: var(--transition);
}

/* ---------- Serviços Section ---------- */
.servicos {
    background: linear-gradient(180deg, var(--light) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
}

.servicos::before,
.servicos::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 0;
}

.servicos::before {
    background-color: rgba(246, 205, 89, 0.1);
    top: 50px;
    left: -100px;
}

.servicos::after {
    background-color: rgba(246, 205, 89, 0.05);
    bottom: 100px;
    right: -50px;
    width: 300px;
    height: 300px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.servico-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transform: translateY(40px);
}

.servico-card.show {
    opacity: 1;
    transform: translateY(0);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--primary);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(246, 205, 89, 0.05) 0%, transparent 100%);
    z-index: -1;
    transition: height 0.5s ease;
}

.servico-card:hover::before {
    height: 100%;
}

.servico-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(246, 205, 89, 0.1) 0%, rgba(246, 205, 89, 0.2) 100%);
    color: var(--primary-dark);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    position: relative;
    transition: var(--transition);
    transform: rotate(0deg);
}

.servico-card:hover .icon {
    transform: rotate(5deg);
    background: linear-gradient(135deg, rgba(246, 205, 89, 0.2) 0%, rgba(246, 205, 89, 0.3) 100%);
    color: var(--primary);
}

.servico-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.servico-card:hover h3 {
    color: var(--primary-dark);
}

.servico-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ---------- Portfolio Section ---------- */
.portfolio {
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(246, 205, 89, 0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: -1;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.portfolio-filter::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
}

.filter-btn {
    background: none;
    border: none;
    padding: 12px 25px;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--text-light);
    border-radius: var(--radius-lg);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 30px;
}

.filter-btn.active {
    color: var(--primary-dark);
    background-color: rgba(246, 205, 89, 0.1);
}

.filter-btn:hover {
    color: var(--primary);
    background-color: rgba(246, 205, 89, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    transform: translateY(0);
    opacity: 0;
    transform: scale(0.95);
    height: 280px;
    background-color: var(--dark);
}

.portfolio-item.show {
    opacity: 1;
    transform: scale(1);
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.95) 0%, rgba(45, 45, 45, 0.7) 50%, rgba(45, 45, 45, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: var(--light);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 25px;
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.portfolio-overlay h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
    opacity: 0;
}

.portfolio-overlay p {
    color: var(--light-80);
    font-size: 0.95rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--dark);
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.portfolio-link:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-5px) scale(1);
}

/* ---------- Clientes Section ---------- */
.clientes {
    background-color: var(--gray);
}

.clientes {
    background: linear-gradient(180deg, var(--gray) 0%, var(--light) 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.clientes::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(246, 205, 89, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.clients-carousel-wrapper {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray) 0%, transparent 100%);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--gray) 100%);
}

.clients-carousel {
    display: flex;
    align-items: center;
    position: relative;
    animation: slide 30s linear infinite;
    width: fit-content;
    padding: 0 20px;
    margin: 0 auto;
}

.clients-carousel:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: var(--transition);
    margin: 0 25px;
    position: relative;
    cursor: pointer;
}

.client-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-8px);
}

.client-logo:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.client-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.client-logo:hover img {
    filter: grayscale(0%);
    filter: drop-shadow(0 5px 15px rgba(246, 205, 89, 0.3));
}

/* Animation for carousel */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 25px)); } /* Ajustado para o espaçamento */
}

/* ---------- Planos Section ---------- */
.planos {
    position: relative;
    overflow: hidden;
}

.planos::before {
    content: '';
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    background-color: rgba(246, 205, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.planos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.plano-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    transform: translateY(0) scale(1);
    opacity: 0;
    transform: translateY(30px);
}

.plano-card.show {
    opacity: 1;
    transform: translateY(0);
}

.plano-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg), 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: var(--transition);
}

.plano-card:hover::before {
    opacity: 1;
}

.plano-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    z-index: 10;
    white-space: nowrap;
}

.plano-card.destaque {
    border: none;
    transform: translateY(-20px) scale(1.05);
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    box-shadow: var(--shadow-lg);
}

.plano-card.destaque::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.plano-header {
    margin-bottom: 30px;
    position: relative;
}

.plano-header h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.plano-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.preco {
    margin-bottom: 30px;
    position: relative;
}

.preco::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    opacity: 0.2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.valor {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--dark) 0%, var(--text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.periodo {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.plano-features {
    margin-bottom: 35px;
    text-align: left;
}

.plano-features ul {
    position: relative;
}

.plano-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}

.plano-features ul li:hover {
    transform: translateX(5px);
    color: var(--dark);
}

.plano-features i {
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.plano-features .fa-check {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.plano-features .fa-times {
    background-color: rgba(220, 53, 69, 0.15);
    color: var(--accent);
}

.plano-card .btn {
    width: 100%;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.plano-card:hover .btn {
    transform: translateY(-5px);
}

/* ---------- Newsletter Section ---------- */
.newsletter {
    background: linear-gradient(to right, rgba(45, 45, 45, 0.95), rgba(45, 45, 45, 0.8)), url('https://picsum.photos/1920/500');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(246, 205, 89, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(246, 205, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    margin-bottom: 40px;
    position: relative;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-content h2 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
}

.newsletter-content h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-content p {
    color: var(--light-80);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background-color: var(--light);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--primary-light);
    padding-left: 30px;
}

.newsletter-form button {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    padding: 0 35px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(246, 205, 89, 0.3);
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateX(0) translateY(0);
    box-shadow: 0 7px 20px rgba(246, 205, 89, 0.4);
}

/* ---------- Contato Section ---------- */
.contato {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.contato::before,
.contato::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.contato::before {
    width: 300px;
    height: 300px;
    background-color: rgba(246, 205, 89, 0.05);
    top: -150px;
    right: -150px;
}

.contato::after {
    width: 250px;
    height: 250px;
    background-color: rgba(246, 205, 89, 0.08);
    bottom: -100px;
    left: -100px;
}

.contato-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contato-info {
    position: relative;
}

.contato-info::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: url('https://picsum.photos/800/1000?blur=3') no-repeat center center;
    background-size: cover; */
    opacity: 0.03;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: var(--radius);
}

.contato-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    transition: var(--transition);
    padding: 15px;
    border-radius: var(--radius);
}

.contato-info .info-item:hover {
    background-color: rgba(246, 205, 89, 0.05);
    transform: translateX(5px);
}

.contato-info i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(246, 205, 89, 0.15) 0%, rgba(246, 205, 89, 0.3) 100%);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: 50%;
    margin-right: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(246, 205, 89, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a.social-circle {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a.social-circle:hover {
    background-color: var(--dark);
    color: var(--light);
}


/* Ajuste para centralizar todos os ícones sociais */
.social-links a.social-circle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    width: auto;
    height: auto;
    display: inline-block !important;
}

/* Garantindo que todos os ícones sejam visíveis com a mesma configuração do LinkedIn */
.social-links a.facebook i,
.social-links a.instagram i,
.social-links a.tiktok i,
.social-links a.youtube i {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: inherit;
}

.contato-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.contato-form::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(246, 205, 89, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

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

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

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.form-group:focus-within::after {
    width: 100%;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    border-radius: 0;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text);
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    padding-left: 20px;
}

.contato-form textarea {
    resize: none;
    min-height: 120px;
}

.contato-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(246, 205, 89, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contato-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.contato-form button:hover::before {
    left: 100%;
}

/* ---------- Footer ---------- */
footer {
    background-color: var(--dark);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-right: 10px;
}

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

.footer-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark);
    color: var(--light);
}

/* ---------- Modal de Imagem ---------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 1000px;
    top: 50%;
    transform: translateY(-50%);
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.modal-caption {
    margin: 15px auto 0;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease forwards;
}

.animate-floating {
    animation: floatingAnimation 4s ease-in-out infinite;
}

.animate-pulse {
    animation: pulseAnimation 3s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-rotateIn {
    animation: rotateIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }

/* ---------- Responsive Design ---------- */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .sobre-content {
        gap: 40px;
    }
    
    .portfolio-item {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 2.8rem);
    }
    
    .hero-content p {
        font-size: clamp(1rem, 2vw, 1.1rem);
    }
    
    .sobre-content {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center;
    }
    
    .sobre-text p {
        text-align: left;
    }
    
    .sobre-image::before {
        display: none;
    }
    
    .sobre-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        justify-content: center;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-filter {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .planos-container {
        justify-content: center;
        gap: 40px;
    }
    
    .plano-card {
        min-width: 280px;
        max-width: 320px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
    
    /* Navigation */
    header {
        padding: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: all 0.4s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0 0 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }
    
    .nav-menu.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.7s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.8s; }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    /* Hero */
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .hero-content .btn {
        margin-bottom: 15px;
    }
    
    /* Cards and Grids */
    .sobre-cards {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-filter {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .portfolio-filter::after {
        display: none;
    }
    
    .filter-btn {
        white-space: nowrap;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .portfolio-item {
        height: auto;
        aspect-ratio: 4/3;
    }
    
    .planos-container {
        flex-direction: column;
        align-items: center;
    }
    
    .plano-card.destaque {
        transform: translateY(0) scale(1);
    }
    
    .plano-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Forms */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius-xl);
        margin-bottom: 15px;
    }
    
    .newsletter-form button {
        border-radius: var(--radius-xl);
    }
    
    .contato-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    footer {
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .servico-card {
        padding: 30px 20px;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 20px);
        padding: 15px;
    }
    
    .client-logo img {
        max-width: 120px;
    }
    
    .newsletter-content h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
    
    .newsletter-form input {
        padding: 15px 20px;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
