/**
 * Potenza Trading - Estilos Principais
 * Design corporativo escuro, mobile-first
 * Desenvolvido por Diego Fonte
 */

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */
:root {
    /* Colors - Dark Corporate Theme */
    --color-bg-dark: #000000;
    --color-bg-darker: #000000;
    --color-bg-card: #111111;
    --color-bg-light: #f8f9fa;
    --color-bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #666666;
    --color-text-dark: #1a1a1a;

    /* Accent Colors */
    --color-accent: #c9a227;
    --color-accent-light: #e5c454;
    --color-accent-dark: #9a7b1e;

    /* Secondary Button Color (como no original) */
    --color-btn-secondary: #5a6a7a;
    --color-btn-secondary-hover: #6b7d8f;

    /* UI Colors */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(0, 0, 0, 0.1);
    --color-overlay: rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header Height */
    --header-height: 115px;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

address {
    font-style: normal;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-outline:hover {
    background: var(--color-text-primary);
    color: var(--color-bg-dark);
}

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

.btn-secondary:hover {
    background: var(--color-btn-secondary-hover);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #000000;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 105px;
    width: auto;
    border-radius: var(--radius-sm);
}

.nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #000000;
    transform: translateX(-100%);
    transition: var(--transition-base);
    overflow-y: auto;
}

.nav.active {
    transform: translateX(0);
}

.nav-list {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
}

.nav-link {
    display: block;
    padding: var(--spacing-md) 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Logo + Language Flags Wrapper */
.logo-lang-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Language Flags */
.lang-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: var(--transition-fast);
    cursor: pointer;
    filter: grayscale(40%);
    border-radius: 3px;
    overflow: hidden;
}

.lang-flag img {
    width: 40px;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-flag:hover {
    opacity: 0.9;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.lang-flag.active {
    opacity: 1;
    filter: grayscale(0%);
}

.lang-flag.active img {
    box-shadow: 0 0 0 2px var(--color-accent);
}

/* Nav Social Icons - Mobile: abaixo do menu */
.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.nav-social-link svg {
    width: 28px;
    height: 28px;
}

.nav-social-link.linkedin {
    color: #0077b5;
}

.nav-social-link.instagram {
    color: #E1306C;
}

.nav-social-link.facebook {
    color: #1877f2;
}

.nav-social-link:hover {
    opacity: 0.7;
    text-decoration: none !important;
}

.nav-social-link::before,
.nav-social-link::after {
    display: none !important;
    content: none !important;
}

.nav-social-link:hover::before,
.nav-social-link:hover::after {
    display: none !important;
    content: none !important;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/conteiners.png') center center / cover no-repeat;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    margin-top: -2rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: #D4AF37;
    -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0.45);
    text-shadow:
        1.5px 1.5px 3px rgba(0, 0, 0, 0.85),
        0 0 10px rgba(212, 175, 55, 0.7),
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 35px rgba(212, 175, 55, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: var(--spacing-sm);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hero-scroll {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-dark {
    background: var(--color-bg-dark);
}

.section-dark .section-tag {
    color: #D4AF37;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-dark .section-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.section-darker {
    background: var(--color-bg-darker);
}

.section-light {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Section with background image */
.section-with-image {
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.section-with-image .container {
    position: relative;
    z-index: 1;
}

.section-bg-image.section-bg-light {
    opacity: 1;
    background-size: 100% auto;
    display: block; /* Mobile: mostrar imagem */
}

.section-bg-image.section-bg-flags {
    opacity: 0.3;
    background-size: cover;
    background-position: center;
}

/* Dual background images - mobile: só Suíça, desktop: lado a lado */
.section-bg-dual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 0;
}

.section-bg-half {
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

/* Mobile: esconde primeira, Suíça ocupa 100% */
.section-bg-half:first-child {
    display: none;
}

.section-bg-half:last-child {
    flex: 1;
    background-position: center;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-light .section-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.section-light .section-tag {
    color: #D4AF37;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-line {
    width: 60px;
    height: 3px;
    background: #b8860b;
    margin: 0 auto var(--spacing-md);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-light .section-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content {
    display: grid;
    gap: var(--spacing-2xl);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    font-weight: 600;
    text-shadow: none;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 700;
    text-shadow: none !important;
}

.about-lead strong {
    color: #FFD700 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: none !important;
}

.about-text strong {
    color: #D4AF37;
    font-weight: 700;
    text-shadow:
        0 0 25px rgba(212, 175, 55, 1),
        0 0 45px rgba(212, 175, 55, 0.9),
        0 0 65px rgba(212, 175, 55, 0.7),
        0 0 85px rgba(212, 175, 55, 0.5),
        2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Products Dropdown */
.products-dropdown {
    margin: var(--spacing-md) 0;
}

.products-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-md);
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.products-dropdown-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.15);
    border-color: var(--color-accent);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.products-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.products-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-dropdown.open .products-dropdown-content {
    max-height: 500px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.products-dropdown-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-dropdown-content li {
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.products-dropdown-content li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.dropdown-note {
    display: block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid #F4D03F;
    border-radius: var(--radius-sm);
    color: #FFD700;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.dropdown-note:hover {
    background: rgba(201, 162, 39, 0.4);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-md);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #b8860b;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 600;
    margin-top: var(--spacing-xs);
    display: block;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.15);
    border-color: var(--color-accent);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-full);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.info-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.info-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.filiais-info {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem !important;
    color: #D4AF37 !important;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    border-left: 3px solid #D4AF37;
    border-radius: 4px;
}

/* Filiais na seção Contato - letra preta */
.section-contact-light .filiais-info {
    color: #000000 !important;
    background: rgba(212, 175, 55, 0.35);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.service-card {
    padding: var(--spacing-lg);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-bg-dark);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

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

/* ========================================
   GLOBAL / ATENDIMENTO SECTION
   ======================================== */
.global-content {
    display: grid;
    gap: var(--spacing-2xl);
}

.global-text .section-tag {
    color: #D4AF37;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.global-text p {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.global-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.35rem 0.4rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-flag {
    font-size: 1rem;
}

.location-name {
    color: #ffffff;
    font-weight: 600;
}

.global-hours {
    display: flex;
    justify-content: center;
}

.hours-card {
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.hours-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.hours-item:last-of-type {
    border-bottom: none;
    margin-bottom: var(--spacing-md);
}

.hours-label {
    font-weight: 700;
    color: #b8860b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hours-time {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
/* Seção de produtos com imagem de fundo */
.section-products {
    background: #e8e8e8;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.section-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/Esquentandoamão.jpeg') center center / cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}


.section-products .section-header {
    position: relative;
    z-index: 2;
}

.section-products .section-tag {
    color: #B8860B;
    font-weight: 900;
}

.section-products .section-title {
    color: #000000;
    font-weight: 700;
}

.section-products .section-line {
    background: #b8860b;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* Número em círculo (mesma cor do botão Saiba Mais) */
.product-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--color-btn-secondary);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

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

.product-list li {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
}

/* Botão Saiba Mais */
.product-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--color-btn-secondary);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    transition: var(--transition-base);
}

.product-btn:hover {
    background: var(--color-btn-secondary-hover);
}

.product-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-btn-secondary);
    transition: var(--transition-fast);
}

.product-link:hover {
    color: var(--color-accent);
}

.product-featured {
    background: #ffffff;
}

/* ========================================
   BLOG SECTION (Novidades / Destaques)
   ======================================== */
.section-blog .section-tag {
    color: #D4AF37;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-blog .section-title {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3rem);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.section-blog .section-line {
    background: #b8860b;
    height: 3px;
    width: 60px;
}

.blog-grid {
    display: grid;
    gap: var(--spacing-md);
}

.blog-card {
    background: var(--color-bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.blog-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.product-featured {
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.15);
}

.blog-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: var(--spacing-xs);
}

.blog-featured {
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.15);
}

/* Label "Novidade" - texto simples sem badge */
.product-new-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.blog-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

.blog-link:hover {
    color: var(--color-accent-light);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
/* Fundo branco para seção de contato */
.section-contact-light {
    background: #ffffff;
}

.section-contact-light .section-tag {
    color: #D4AF37;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: none;
}

.section-contact-light .section-title {
    color: #000000;
    font-weight: 700;
}

.section-contact-light .section-line {
    background: #b8860b;
}

.section-contact-light .contact-info > p {
    color: #000000;
    font-weight: 600;
}

.section-contact-light .contact-label {
    color: #000000;
    font-weight: 700;
}

.section-contact-light .contact-item a,
.section-contact-light .contact-item address {
    color: #000000;
    font-weight: 600;
}

.section-contact-light .contact-form-wrapper {
    background: #e0e0e0 !important;
    border-color: #cccccc;
}

.section-contact-light .contact-form h3 {
    color: #1a1a1a;
}

.section-contact-light .contact-form .form-group label {
    color: #666666;
}

.section-contact-light .contact-form input,
.section-contact-light .contact-form select,
.section-contact-light .contact-form textarea {
    background: #ffffff !important;
    border-color: #cccccc !important;
    color: #1a1a1a !important;
}

.section-contact-light .contact-form input::placeholder,
.section-contact-light .contact-form textarea::placeholder {
    color: #222222 !important;
}

.section-contact-light .contact-form select option {
    background: #ffffff;
    color: #333333;
}

/* Ícones sociais com cores das marcas no fundo branco */
.section-contact-light .social-links a {
    color: #ffffff;
}

.section-contact-light .social-links a.linkedin {
    background: #0077b5;
    border-color: #0077b5;
}

.section-contact-light .social-links a.instagram {
    background: #E1306C;
    border-color: #E1306C;
}

.section-contact-light .social-links a.facebook {
    background: #1877f2;
    border-color: #1877f2;
}

.section-contact-light .social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-wrapper {
    display: grid;
    gap: var(--spacing-2xl);
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-line {
    margin: 0 0 var(--spacing-md);
}

.contact-info > p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-full);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item address {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #000000;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-sm);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.footer-cnpj {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p,
.footer-contact a {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-bottom .developer-credit {
    margin-top: var(--spacing-xs);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom .developer-credit:hover {
    opacity: 1;
}

.footer-bottom .developer-credit a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .developer-credit a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   MOBILE ADJUSTMENTS (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
    }
}

/* Mobile adjustments continued */
@media (max-width: 767px) {
    /* Hero - título menor e imagem de fundo menor no mobile */
    .hero-content {
        margin-top: -4rem;
    }

    .hero-bg {
        background: url('../img/conteinersmobile.png') center center / cover no-repeat;
    }

    .hero-title-line {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.4);
        color: #C9A227;
        text-shadow:
            1.5px 1.5px 3px rgba(0, 0, 0, 0.85),
            0 0 12px rgba(224, 184, 48, 0.6),
            0 0 25px rgba(224, 184, 48, 0.4);
    }

    .hero-title-sub {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 0.15em;
    }

    /* Nossa História - texto no mobile */
    .about-text {
        padding: 0 var(--spacing-xs);
        max-width: 100%;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-break: break-word;
        hyphens: auto;
    }

    .about-lead {
        font-size: 0.95rem;
    }

    /* About Stats - no mobile */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    /* Info Cards (Sede Brasil, CNPJ) - no mobile */
    .info-card {
        padding: 0.7rem;
        gap: 0.6rem;
    }

    .info-icon {
        width: 36px;
        height: 36px;
    }

    .info-icon svg {
        width: 18px;
        height: 18px;
    }

    .info-content h4 {
        font-size: 0.75rem;
    }

    .info-content p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    /* Services - imagem de fundo mobile */
    .section-bg-image.section-bg-light {
        opacity: 0.85;
        background-image: url('../img/bg-servicosmobile.jpg') !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Services - texto mais brilhante no mobile */
    .section-light .section-tag {
        color: #D4AF37;
        font-weight: 900;
        margin-bottom: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Products Dropdown - mobile */
    .products-dropdown-content ul {
        grid-template-columns: 1fr;
    }

    .products-dropdown-btn {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }

    /* Aumentar max-height para caber todos os itens + nota */
    .products-dropdown.open .products-dropdown-content {
        max-height: 800px;
    }

    /* Hero - títulos no mobile */
    .hero-title {
        margin-top: -6rem;
    }

    .hero-title-line {
        font-size: clamp(1.8rem, 8vw, 3rem);
        white-space: nowrap;
    }

    .hero-title-sub {
        font-size: clamp(0.8rem, 3.8vw, 1.6rem);
    }

    .section-light .section-title {
        color: #ffffff;
        font-weight: 700;
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.7),
            0 0 25px rgba(255, 255, 255, 0.5),
            3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    .section-light .section-subtitle {
        color: #ffffff;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Products - imagem de fundo mobile */
    .section-products::before {
        background: url('../img/wood-palletsmobile.jpg') center center / cover no-repeat;
        opacity: 0.8;
    }

    /* Atendimento Global - imagem de fundo mostrando mais bandeiras */
    .section-bg-image.section-bg-flags {
        opacity: 0.25;
        background-size: 125% auto;
        background-position: center center;
    }

    /* Contact info - mais visível */
    .contact-item {
        margin-bottom: var(--spacing-sm);
    }
}

/* Contact items - aparecer imediatamente sem animação */
.contact-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* ========================================
   DESKTOP STYLES (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
    :root {
        --header-height: 130px;
    }

    /* Desktop: duas imagens lado a lado */
    .section-bg-half:first-child {
        display: block;
        flex: 1;
        background-position: center right;
    }

    .section-bg-half:last-child {
        background-position: center left;
    }

    .header-container {
        padding: 0 var(--spacing-lg);
    }

    .logo img {
        height: 125px;
    }

    /* Navigation Desktop */
    .nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        transform: none;
        display: flex;
        align-items: center;
    }

    .nav-list {
        flex-direction: row;
        padding: 0;
        gap: var(--spacing-xs);
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1.15rem;
        font-weight: 500;
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent);
    }

    /* Nav Social Desktop - ao lado de Contato */
    .nav-social {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: 20px;
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        gap: 18px;
    }

    .nav-social-link svg {
        width: 26px;
        height: 26px;
    }

    .menu-toggle {
        display: none;
    }

    /* Hero */
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    /* Global Locations - 5 por linha no desktop */
    .global-locations {
        grid-template-columns: repeat(5, 1fr);
    }

    .location {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-bg-image.section-bg-light {
        display: block;
        opacity: 0.75;
        background-size: 100% auto;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-sm);
    }

    .product-card {
        padding: var(--spacing-sm);
    }

    .product-title {
        font-size: 1rem;
    }

    .product-desc {
        font-size: 1.05rem;
    }

    .product-btn {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    /* Products - fundo menos fosco no desktop */
    .section-products::before {
        opacity: 0.9;
    }

    /* Blog / Importação - cards maiores no desktop */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .blog-card .blog-content {
        padding: var(--spacing-md);
    }

    .blog-card .blog-content h3 {
        font-size: 1.15rem;
    }

    .blog-card .blog-content p {
        font-size: 0.95rem;
    }

    .blog-card .blog-link {
        font-size: 0.9rem;
    }

    /* Blog - fundo menos fosco no desktop */
    .section-blog .section-bg-image {
        opacity: 0.85 !important;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

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

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        width: 200px;
        margin: 0 0 var(--spacing-md);
    }
}

/* ========================================
   LARGE DESKTOP STYLES (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    .section {
        padding: var(--spacing-3xl) 0;
    }

    /* About */
    .about-content {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Global */
    .global-content {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .product-featured {
        grid-column: span 2;
    }

    /* Nav Links */
    .nav-list {
        gap: var(--spacing-sm);
    }

    .nav-link {
        padding: 0.5rem 1.25rem;
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   SCROLLBAR CUSTOMIZATION
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}
