/* -----------------------------
   VARIABLES & SETUP
----------------------------- */
:root {
    /* Colors */
    --primary: #ed8020; /* The requested main color */
    --primary-dark: #cc6d17;
    --primary-light: #fbe6d2;
    
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    
    --bg-main: #ffffff;
    --bg-light: #f9fafb;
    --bg-alt: #f3f4f6;

    /* Typography */
    /* Plus Jakarta Sans, Outfit or Inter work well. We chose Outfit for headings, Playfair for accents */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --container-padding: 2rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadow / Elevation */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    
    /* Animation */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    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: color var(--transition);
}

/* -----------------------------
   UTILITIES & TYPOGRAPHY
----------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.bg-light { background-color: var(--bg-light); }

.highlight {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
}

/* -----------------------------
   BUTTONS
----------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background-color: var(--text-main);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--text-main);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.w-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.text-link i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* -----------------------------
   NAVIGATION
----------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
    height: 120px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    height: 90px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100px;
    object-fit: contain;
    transition: height var(--transition);
    mix-blend-mode: multiply; /* Helps eliminate white background boxes */
    clip-path: inset(3%); /* Removes border artifacts around the image */
}

.navbar.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    margin-bottom: 3rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--bg-alt);
    padding-bottom: 1rem;
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
}

.hero-image-mask {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

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

.decorative-element {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    z-index: 1;
    opacity: 0.1;
}

/* -----------------------------
   SECTION GENERAL
----------------------------- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* -----------------------------
   PRODUCTS GALLERY
----------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    border-radius: var(--radius-lg);
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden; /* Contains the overlay */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); /* Premium soft shadow */
}

.product-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white backgrounds seamlessly */
    clip-path: inset(5%); /* Force-crops the 5% edges to delete ANY black lines */
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.15); /* Sleek zoom inside the frame */
}

.product-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.product-overlay i {
    color: #fff;
    background-color: var(--primary);
    font-size: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(237, 128, 32, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card:hover .product-overlay i {
    transform: scale(1) translateY(0);
}

/* -----------------------------
   ABOUT SECTION
----------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    width: 85%;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-img-offset {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 10px solid var(--bg-main);
}

.about-img-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* -----------------------------
   CTA SECTION
----------------------------- */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.cta-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--text-main);
    color: #fff;
}

/* -----------------------------
   MODAL
----------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
}

/* Update Modal Base */
.premium-modal {
    max-width: 1000px !important;
    padding: 0 !important;
    overflow: hidden;
    background-color: transparent;
}

.premium-modal-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    min-height: 550px;
}

.premium-modal-image {
    background-color: var(--bg-light);
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.premium-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.premium-modal-info {
    background-color: #fff;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.badge-product {
    background-color: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    display: inline-block;
    align-self: flex-start;
}

.modal-product-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-product-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: auto;
}

.modal-actions .btn {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 1.25rem;
}

@media (max-width: 768px) {
    .premium-modal-layout {
        grid-template-columns: 1fr;
    }
    .premium-modal-image {
        min-height: 350px;
        order: -1;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .premium-modal-info {
        padding: 2.5rem 2rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}

/* -----------------------------
   FOOTER
----------------------------- */
.footer {
    background-color: var(--text-main);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-typographic-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-family: var(--font-sans);
}

.footer-typographic-logo .word-1 {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.footer-typographic-logo .word-2 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 0.25rem;
    margin-right: -0.4em; /* Compensa o tracking da última letra para alinhar certo */
}

.footer-links-group h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-group a {
    display: block;
    margin-bottom: 0.75rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.developed-by strong {
    color: var(--primary);
    font-weight: 600;
}

/* -----------------------------
   ANIMATIONS 
----------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* -----------------------------
   RESPONSIVE DESIGN
----------------------------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-image-wrapper {
        height: 500px;
    }

    .about-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-stack {
        margin-bottom: 4rem;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-offset {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

/* -----------------------------
   REFINED QUOTE MODAL (Premium)
----------------------------- */
.quote-modal-content {
    max-width: 900px !important;
    padding: 0 !important;
    overflow: hidden;
    background-color: transparent;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    min-height: 550px;
}

.quote-sidebar {
    background-color: var(--text-main);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.quote-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.quote-sidebar-overlay h3 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 400;
}

.quote-product-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.quote-divider {
    border: none;
    height: 2px;
    width: 40px;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.quote-sidebar-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-form-section {
    padding: 3rem 3.5rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.premium-form .form-group {
    margin-bottom: 1.5rem;
}

.premium-form .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
    display: block;
}

.premium-form .form-control {
    border: none;
    border-bottom: 2px solid #f3f4f6;
    border-radius: 0;
    padding: 0.5rem 0;
    background-color: transparent;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color var(--transition);
    width: 100%;
}

.premium-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary);
}

.premium-form .form-control::placeholder {
    color: #d1d5db;
    font-weight: 300;
}

.premium-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1em;
    cursor: pointer;
    color: var(--text-muted);
}

.premium-form select.form-control:not(:invalid) {
    color: var(--text-main);
}

.form-security-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.quote-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.quote-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* -----------------------------
   WHATSAPP FLOAT
----------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    animation: whatsappPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(37, 211, 102, 0.4));
    transition: filter 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float:hover img {
    filter: drop-shadow(0 8px 15px rgba(37, 211, 102, 0.6));
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }
    
    .quote-sidebar {
        min-height: 250px;
        order: -1;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .quote-sidebar-overlay {
        padding: 2.5rem 2rem;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .quote-form-section {
        padding: 2.5rem 2rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

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