/* Carregamento das Fontes Nunito */
@font-face {
    font-family: 'Nunito';
    src: url('Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --logo-red: #E61E25;
    --logo-yellow: #F9A01B;
    --logo-black: #000000;
    --white: #ffffff;
    --gray-dark: #121212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--logo-black);
    color: var(--white);
    overflow-x: hidden;
    font-weight: 300;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s;
    background: transparent;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 3px solid var(--logo-yellow);
    padding: 5px 6%;
}

.logo-box {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.logo-box img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    transition: 0.4s;
}

header.scrolled .logo-box img {
    width: 120px;
    height: 120px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: var(--logo-yellow);
}

.nav-cta {
    background: var(--logo-red);
    padding: 8px 18px;
    border-radius: 5px;
}

/* --- Menu Hamburguer --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--logo-black);
    /* Fallback caso o vídeo não carregue */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/img/video_banner.mp4');
    background-size: cover;
    background-position: center;
}

#bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s;
}

/* Garantir que o vídeo funcione no mobile */
@media (max-width: 768px) {
    #bg-video {
        object-position: center;
    }
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content span {
    color: var(--logo-yellow);
}

.hero-content p {
    font-weight: 300;
}

/* --- Botões --- */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary { 
    background: var(--logo-red); 
    color: #fff; 
}

.btn-primary:hover { 
    background: var(--logo-yellow); 
    color: #000; 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 30, 37, 0.4);
}

.btn-outline { 
    border: 2px solid #fff; 
    color: #fff; 
}

.btn-outline:hover { 
    background: #fff; 
    color: #000; 
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- Seções Gerais --- */
.section { 
    padding: 100px 6%; 
}

.section-header h2 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 700;
}

.underline {
    width: 60px; 
    height: 5px;
    background: var(--logo-red);
    margin: 15px auto;
}

/* --- Serviços --- */
.services {
    padding: 80px 6%;
    background: var(--logo-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: var(--gray-dark);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.service-card h3 {
    font-weight: 700;
}

.service-card p {
    font-weight: 300;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(230, 30, 37, 0.2);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--logo-yellow);
    margin-bottom: 20px;
}

.service-link {
    color: var(--logo-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.service-link:hover {
    color: var(--logo-red);
    transform: translateX(5px);
}

/* --- Brand Strip (Cores do Projeto) --- */
.brand-strip {
    display: flex;
    height: 15px;
}

.strip { flex: 1; }
.red { background: var(--logo-red); }
.yellow { background: var(--logo-yellow); }
.black { background: var(--logo-black); }

/* --- Portfólio --- */
.portfolio {
    background: var(--logo-black);
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #aaa;
    margin-top: 10px;
    font-weight: 300;
}

.portfolio-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid #222;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio-item:hover iframe {
    transform: scale(1.02);
}

.item-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

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

/* --- Diferenciais --- */
.differentials {
    background: #080808;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.title-left { 
    font-size: 2.5rem; 
    margin-bottom: 30px;
    color: var(--logo-yellow);
    font-weight: 700;
}

.diff-list { 
    list-style: none; 
}

.diff-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

.diff-list i { 
    color: var(--logo-red); 
    font-size: 1.4rem; 
}

.img-fluid { 
    max-width: 100%; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.rounded {
    border-radius: 10px;
}

/* Vídeo da Empresa */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230, 30, 37, 0.3);
    background: #000;
    aspect-ratio: 16 / 9;
}

.company-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    outline: none;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.company-video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* Prevenir fullscreen APENAS no vídeo de apresentação - Múltiplos navegadores */
.company-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.company-video::-moz-media-controls-fullscreen-button {
    display: none !important;
}

/* Forçar que o vídeo permaneça no container */
.video-container {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.video-container video {
    position: relative;
    z-index: 1;
}

/* Mobile - Forçar inline playback */
@media (max-width: 768px) {
    .company-video {
        object-fit: contain;
    }
    
    .video-container {
        -webkit-overflow-scrolling: touch;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--logo-yellow);
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}

.video-container:hover::before {
    opacity: 1;
}

/* --- Depoimentos --- */
.clients-testimonials {
    background: var(--logo-black);
}

.clients-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(230, 30, 37, 0.3);
}

.testimonials-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--logo-yellow);
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(249, 160, 27, 0.2);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--logo-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--white);
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ddd;
    font-weight: 300;
    padding-right: 50px;
}

.client-meta {
    border-top: 1px solid #222;
    padding-top: 15px;
}

.client-meta strong {
    display: block;
    color: var(--logo-yellow);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.client-meta span {
    color: #999;
    font-size: 0.85rem;
    font-weight: 300;
}

/* --- CTA Final --- */
.cta-final {
    padding: 100px 6%;
    background: linear-gradient(rgba(230, 30, 37, 0.9), rgba(0, 0, 0, 0.9)), 
                url('wawera.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.cta-final h2 { 
    font-size: 2.5rem; 
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

/* --- Footer --- */
footer {
    padding: 60px 6% 30px;
    background: #080808;
    text-align: center;
}

.footer-logo img { 
    width: 80px; 
    margin-bottom: 20px; 
}

.social-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a { 
    color: #fff; 
    font-size: 1.5rem; 
    transition: 0.3s; 
}

.social-links a:hover { 
    color: var(--logo-red); 
    transform: scale(1.1);
}

.copyright {
    border-top: 1px solid #222;
    padding-top: 25px;
    font-size: 0.8rem;
    color: #666;
}

.copyright span { 
    color: var(--logo-red); 
}

/* --- WhatsApp Float --- */
.wa-float {
    position: fixed;
    bottom: 30px; 
    right: 30px;
    background: #25d366;
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #fff; 
    font-size: 30px; 
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Página de Serviços --- */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-black) 100%);
    text-align: center;
    padding: 150px 6% 80px;
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.services-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.service-detail {
    padding: 100px 6%;
    background: var(--logo-black);
}

.service-detail.alt {
    background: #0a0a0a;
}

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-container.reverse {
    direction: rtl;
}

.service-container.reverse > * {
    direction: ltr;
}

.service-content {
    padding: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--logo-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--logo-yellow);
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ddd;
    font-weight: 300;
}

.service-for-who,
.service-benefits {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid var(--logo-yellow);
}

.service-for-who h3,
.service-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--logo-yellow);
    font-weight: 700;
}

.service-for-who h3 i,
.service-benefits h3 i {
    margin-right: 10px;
    color: var(--logo-red);
}

.service-for-who ul,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.service-for-who li,
.service-benefits li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #ccc;
    font-weight: 300;
    line-height: 1.6;
}

.service-for-who li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--logo-yellow);
    font-weight: 700;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logo-red);
    font-weight: 700;
}

.service-benefits strong {
    color: var(--logo-yellow);
    font-weight: 700;
}

.service-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(230, 30, 37, 0.3);
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

/* --- Página de Portfólio Completo --- */
.portfolio-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--logo-yellow) 0%, var(--logo-black) 100%);
    text-align: center;
    padding: 150px 6% 80px;
}

.portfolio-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.portfolio-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.portfolio-filters {
    padding: 40px 6%;
    background: #0a0a0a;
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.filters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--logo-yellow);
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--logo-yellow);
    color: var(--logo-black);
}

.portfolio-section {
    padding: 80px 6%;
    background: var(--logo-black);
}

.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-project {
    background: #0d0d0d;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    opacity: 1;
    transform: scale(1);
}

.portfolio-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 30, 37, 0.3);
}

.project-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.project-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.project-info {
    padding: 30px;
}

.project-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--logo-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--logo-yellow);
    font-weight: 700;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 20px;
    font-weight: 300;
}

.project-meta {
    padding-top: 20px;
    border-top: 1px solid #222;
}

.project-meta p {
    font-size: 0.9rem;
    margin: 8px 0;
    color: #999;
    font-weight: 300;
}

.project-meta strong {
    color: var(--logo-yellow);
    font-weight: 700;
}

/* --- Página de Orçamento --- */
.orcamento-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-black) 100%);
    text-align: center;
    padding: 150px 6% 80px;
}

.orcamento-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.orcamento-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 2rem;
    color: var(--logo-yellow);
}

.stat span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* Formulário e Contato */
.orcamento-section {
    padding: 80px 6%;
    background: var(--logo-black);
}

.orcamento-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Formulário */
.form-container {
    background: #0d0d0d;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--logo-yellow);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #999;
    font-weight: 300;
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--logo-yellow);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-yellow);
    background: #222;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-weight: 300;
}

.form-disclaimer i {
    color: var(--logo-yellow);
    margin-right: 5px;
}

/* Cards de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whatsapp-icon i {
    font-size: 2rem;
    color: var(--white);
}

.whatsapp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.whatsapp-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-whatsapp {
    background: var(--white);
    color: #25d366;
    font-weight: 700;
    border: none;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
    color: #128c7e;
    transform: translateY(-2px);
}

.info-card {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--logo-yellow);
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--logo-yellow);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card h3 i {
    margin-right: 8px;
    color: var(--logo-red);
}

.info-card p {
    color: #ccc;
    line-height: 1.7;
    font-weight: 300;
}

.info-card a {
    color: var(--logo-yellow);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.info-card a:hover {
    color: var(--logo-red);
}

.social-card {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.social-card h3 {
    font-size: 1.1rem;
    color: var(--logo-yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--logo-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links-contact a:hover {
    background: var(--logo-yellow);
    color: var(--logo-black);
    transform: translateY(-3px);
}

/* Seção Por Que Escolher */
.why-choose {
    padding: 80px 6%;
    background: #0a0a0a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: var(--gray-dark);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 30, 37, 0.2);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--logo-red);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--logo-yellow);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    color: #999;
    font-weight: 300;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    /* Header Mobile */
    header {
        padding: 15px 5%;
    }
    
    .logo-box img {
        width: 120px;
        height: 120px;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        transition: 0.4s;
        padding-top: 80px;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        display: inline-block;
        text-align: center;
    }
    
    /* Outras seções mobile */
    .grid-2-cols { 
        grid-template-columns: 1fr; 
    }
    
    .portfolio-grid-simple { 
        grid-template-columns: 1fr; 
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    /* Clientes e Depoimentos Mobile */
    .clients-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        padding-right: 40px;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
    }
    
    .quote-icon i {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .title-left {
        font-size: 1.8rem;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 15px 35px;
    }
    
    /* Página de Serviços Mobile */
    .services-hero {
        min-height: 50vh;
        padding: 120px 5% 60px;
    }
    
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-container.reverse {
        direction: ltr;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    /* Página de Portfólio Mobile */
    .portfolio-hero {
        min-height: 50vh;
        padding: 120px 5% 60px;
    }
    
    .portfolio-hero-content h1 {
        font-size: 2rem;
    }
    
    .portfolio-hero-content p {
        font-size: 1rem;
    }
    
    .portfolio-filters {
        position: relative;
        top: 0;
    }
    
    .filters-container {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .portfolio-full-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    /* Página de Orçamento Mobile */
    .orcamento-hero {
        min-height: 40vh;
        padding: 120px 5% 60px;
    }
    
    .orcamento-hero-content h1 {
        font-size: 2rem;
    }
    
    .orcamento-hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat i {
        font-size: 1.5rem;
    }
    
    .stat span {
        font-size: 0.95rem;
    }
    
    .orcamento-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-card {
        padding: 25px;
    }
    
    .whatsapp-card h3 {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}