/* ========================================
   DEDRA & CO. REPRESENTAÇÕES — Landing Page
   Mobile-first | Responsive | Modern
   ======================================== */

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

:root {
    --orange: #FF6600;
    --orange-dark: #E55A00;
    --orange-light: #FFF3E8;
    --green: #2D8C3C;
    --green-dark: #1F6B2B;
    --green-light: #E8F5E9;
    --blue: #0056A4;
    --blue-dark: #003D75;
    --blue-light: #E3F0FC;
    --dark: #1A1A2E;
    --gray-900: #2D2D3D;
    --gray-700: #555566;
    --gray-500: #888899;
    --gray-300: #CCCCDD;
    --gray-100: #F5F5FA;
    --white: #FFFFFF;
    --cream: #FEFCF8;
    --whatsapp: #25D366;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* ===== NAVIGATION ===== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    transform: translateY(-100%);
    opacity: 0;
}

#main-nav.visible {
    transform: translateY(0);
    opacity: 1;
}

#main-nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--orange);
    background: var(--orange-light);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-xl) !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

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

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
}

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

.btn-whatsapp:hover {
    background: #1DB954;
}

.btn-download {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn-green:hover {
    background: var(--green-dark);
}

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

.btn-blue:hover {
    background: var(--blue-dark);
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,102,0,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45,140,60,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0,86,164,0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Decorative elements */
#hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-logo {
    width: 180px;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Hero Badge Box */
.hero-badge-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto 36px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 102, 0, 0.5);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 480px;
    position: relative;
    overflow: hidden;
}

.hero-badge-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,102,0,0.12) 0%, rgba(255,102,0,0.03) 100%);
    z-index: 0;
}

.hero-badge-box > * {
    position: relative;
    z-index: 1;
}

.hero-logo-inside {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-badge-text {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-badge-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

#hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--orange);
    font-weight: 600;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge i {
    color: var(--orange);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== SECTION SHARED STYLES ===== */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: var(--orange-light);
    color: var(--orange);
}

.tag-green {
    background: var(--green-light);
    color: var(--green);
}

.tag-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.tag-orange {
    background: var(--orange-light);
    color: var(--orange);
}

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

.section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

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

/* ===== QUEM SOMOS ===== */
#quem-somos {
    background: var(--cream);
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.quem-somos-image {
    text-align: center;
}

.profile-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--orange);
    box-shadow: 0 0 0 8px var(--orange-light), var(--shadow-lg);
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.profile-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.quem-somos-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.quem-somos-text p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
    align-items: flex-start;
}

.highlight-box i {
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box div {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.highlight-box strong {
    color: var(--dark);
}

.contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-quick .btn {
    font-size: 0.9rem;
    padding: 12px 24px;
}

/* ===== PRODUCTS ===== */
#bambuo {
    background: var(--white);
}

#kingspan {
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    opacity: 0;
    transition: var(--transition);
}

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

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

.product-card-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.product-card-blue .product-icon {
    background: var(--blue-light);
    color: var(--blue);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-blue .product-tag {
    background: var(--blue-light);
    color: var(--blue);
}

.product-card p:last-of-type {
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.6;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
}

.badge-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    font-size: 1.3rem;
    color: var(--green);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.benefits-blue .benefit-item {
    background: var(--blue-light);
}

.benefits-blue .benefit-item i {
    color: var(--blue);
}

/* ===== IDEAL PARA ===== */
.ideal-para {
    padding: 24px;
    background: var(--green-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--green);
    margin-bottom: 40px;
}

.ideal-para h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.ideal-para p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ideal-blue {
    background: var(--blue-light);
    border-color: var(--blue);
}

.ideal-blue h3 {
    color: var(--blue);
}

/* ===== CTA DOWNLOAD ===== */
.cta-download {
    text-align: center;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,86,164,0.1);
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== POR QUE INVESTIR ===== */
#por-que-investir {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: var(--white);
}

#por-que-investir .section-tag {
    background: rgba(255,102,0,0.2);
    color: var(--orange);
}

#por-que-investir .section-header h2 {
    color: var(--white);
}

#por-que-investir .section-desc {
    color: rgba(255,255,255,0.7);
}

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

.invest-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.invest-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.invest-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.invest-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.invest-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== AGENDAMENTO ===== */
#agendamento {
    background: var(--cream);
}

.agendamento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--orange);
    margin-right: 4px;
    width: 18px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,102,0,0.1);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888899' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--gray-700);
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.checkbox-label:hover {
    border-color: var(--orange);
    background: var(--orange-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    display: none;
}

.checkmark {
    display: none;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-light);
}

.contact-card h3 i {
    color: var(--orange);
    margin-right: 8px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--orange);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-link {
    display: block;
    text-decoration: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--orange-light) 0%, #FFF8F0 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    min-height: 160px;
}

.map-link:hover .map-placeholder {
    background: linear-gradient(135deg, #FFE8D0 0%, var(--orange-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.map-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 6px;
}

.map-placeholder small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== FOOTER ===== */
#footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.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: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

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

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

.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--orange);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.footer-contact ul li i {
    color: var(--orange);
    width: 18px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateX(8px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }

    .container {
        padding: 0 32px;
    }

    .quem-somos-grid {
        grid-template-columns: 280px 1fr;
    }

    .agendamento-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .form-card {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

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

/* ===== RESPONSIVE — DESKTOP ===== */
@media (min-width: 1024px) {
    section {
        padding: 120px 0;
    }

    .hero-logo {
        width: 220px;
    }

    .hero-logo-inside {
        width: 180px;
    }

    .hero-badge-box {
        padding: 36px 48px;
    }

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

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

    .invest-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .profile-frame {
        width: 240px;
        height: 240px;
    }
}

/* ===== MOBILE MENU ===== */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .contact-quick {
        flex-direction: column;
    }

    .contact-quick .btn {
        width: 100%;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

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

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    #main-nav,
    .whatsapp-float,
    .hero-scroll-indicator {
        display: none !important;
    }

    section {
        page-break-inside: avoid;
        padding: 40px 0;
    }
}