/* ===================================================
   LARANJAS NATURAL - CSS Principal
   Mobile-First Design
   Paleta: Laranja #FF6B00 | Verde #2D6A2D | Branco #FFFFFF
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #FF6B00;
    --orange-dark: #E05A00;
    --orange-light: #FF8C33;
    --orange-pale: #FFF3E8;
    --green-primary: #2D6A2D;
    --green-dark: #1E4A1E;
    --green-light: #4CAF50;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-400: #ADB5BD;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --black: #1A1A1A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-produto {
    background: var(--green-primary);
    color: var(--white);
    font-size: 0.9rem;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 106, 45, 0.3);
}

.btn-produto:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 106, 45, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--orange-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav Menu Mobile */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    /* max-width: 320px; */
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 80px 20px 40px;
}

.nav-menu.active {
    right: 0;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-primary);
    background: var(--orange-pale);
}

.nav-link.nav-cta {
    background: var(--orange-primary);
    color: var(--white);
    margin-top: 8px;
}

.nav-link.nav-cta:hover {
    background: var(--orange-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 76px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--white);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease both;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--orange-light);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
}

/* ===== HIGHLIGHTS BAR ===== */
.highlights-bar {
    background: var(--orange-primary);
    padding: 20px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===== SOBRE NÓS ===== */
.sobre {
    padding: 80px 0;
    background: var(--white);
}

.sobre-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.sobre-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.sobre-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.sobre-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.sobre-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.sobre-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    padding: 24px;
    background: var(--orange-pale);
    border-radius: var(--radius-md);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ===== PRODUTOS ===== */
.produtos {
    padding: 80px 0;
    background: var(--gray-100);
}

.produtos-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.produto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.produto-card.featured {
    border: 3px solid var(--orange-primary);
}

.produto-badge-destaque {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.produto-img-wrap {
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

.produto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover .produto-img-wrap img {
    transform: scale(1.05);
}

.produto-info {
    padding: 24px;
}

.produto-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.produto-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.produto-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.produto-tags li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

.produto-tags li i {
    color: var(--green-primary);
    font-size: 0.9rem;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 80px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.diferencial-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.diferencial-card:hover {
    background: var(--white);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.diferencial-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    background: var(--orange-primary);
}

.diferencial-icon i {
    font-size: 1.6rem;
    color: var(--orange-primary);
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon i {
    color: var(--white);
}

.diferencial-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.diferencial-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
    padding: 80px 0;
    background: var(--gray-100);
}

.contato-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contato-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 1.4rem;
    color: var(--orange-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.info-item a,
.info-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-item a:hover {
    color: var(--orange-primary);
}

.social-links h4 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
    margin-top: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.facebook { background: #1877F2; }
.social-icon.whatsapp { background: #25D366; }

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===== FORMULÁRIO ===== */
.contato-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
}

.form-message {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF6B00' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.65);
}

.footer-links h4,
.footer-produtos h4,
.footer-contato h4 {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul,
.footer-produtos ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-produtos a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-produtos a:hover {
    color: var(--orange-primary);
    padding-left: 4px;
}

.footer-contato p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}

.footer-contato i {
    color: var(--orange-primary);
    font-size: 1rem;
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 17px;
    width: 44px;
    height: 44px;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 997;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATE ===== */
.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

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

/* ===================================================
   TABLET (min-width: 600px)
   =================================================== */
@media (min-width: 600px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 100px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .produto-card.featured {
        grid-column: 1 / -1;
    }

    .produto-card.featured .produto-img-wrap {
        height: 240px;
    }

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

    .form-row {
        flex-direction: row;
        gap: 16px;
    }
}

/* ===================================================
   DESKTOP (min-width: 768px)
   =================================================== */
@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 100px;
    }
    
    /* Navbar Desktop */
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 4px;
        padding: 0;
        transform: none;
        right: auto;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 8px 16px;
        width: auto;
    }

    .nav-link.nav-cta {
        margin-top: 0;
        margin-left: 8px;
    }

    /* Sobre */
    .sobre-grid {
        flex-direction: row;
        align-items: center;
    }

    .sobre-image {
        flex: 1;
    }

    .sobre-image img {
        height: 400px;
    }

    .sobre-content {
        flex: 1;
    }

    /* Contato */
    .contato-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .contato-info {
        flex: 1;
    }

    .contato-form-wrap {
        flex: 1.5;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.video-sobre {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo cobrir a área como uma imagem de fundo */
    border-radius: 15px; /* Se a sua imagem original tinha bordas arredondadas */
    display: block;
}

.sobre-image {
    position: relative; /* Garante que o badge (+10 anos) continue em cima do vídeo */
    overflow: hidden;
}

/* ===================================================
   LARGE DESKTOP (min-width: 1024px)
   =================================================== */
@media (min-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .produto-card.featured {
        grid-column: auto;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
