/* ===== PTA LOCACOES - MAIN STYLES ===== */
/* Design adaptado do Lovable para CSS Vanilla */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* PTA Brand Colors */
    --pta-red: hsl(355, 89%, 42%);
    --pta-red-dark: hsl(355, 88%, 35%);
    --pta-graphite: hsl(0, 0%, 18%);
    --pta-gray-medium: hsl(0, 0%, 30%);
    --pta-gray-light: hsl(0, 0%, 96%);
    --pta-white: hsl(0, 0%, 100%);
    --pta-whatsapp: hsl(142, 70%, 49%);

    /* Semantic Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 18%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 18%);
    --primary: hsl(355, 89%, 42%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 96%);
    --secondary-foreground: hsl(0, 0%, 18%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 30%);
    --accent: hsl(355, 89%, 42%);
    --border: hsl(0, 0%, 90%);
    --input: hsl(0, 0%, 90%);
    --ring: hsl(355, 89%, 42%);
    --radius: 0.5rem;

    /* Shadows */
    --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 12px rgba(200, 16, 46, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Layout */
    --header-height: 80px;
    --container-max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background-color: var(--pta-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
}

.btn-hero-outline:hover {
    background-color: var(--primary-foreground);
    color: var(--pta-graphite);
}

.btn-whatsapp {
    background-color: var(--pta-whatsapp);
    color: var(--primary-foreground);
}

.btn-whatsapp:hover {
    background-color: hsl(142, 70%, 40%);
}

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 1rem;
}

.header-logo img {
    height: 64px;
    width: auto;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--primary-foreground);
    font-weight: 600;
    position: relative;
    transition: opacity 0.3s;
}

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

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

.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    font-weight: 600;
}

.header-phone svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--primary-foreground);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1rem 2.5rem 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--primary-foreground);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav .btn {
    display: block;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: none;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-logo img {
        height: 80px;
    }

    .header-nav {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .header-container {
        height: 112px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.55), rgba(77, 77, 77, 0.55)), url('../assets/background-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 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.4'%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");
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(200, 16, 46, 0.2);
    border: 1px solid rgba(200, 16, 46, 0.3);
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-title {
    font-size: 1.75rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-foreground);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Hero Visual - Badge 20+ anos */
.hero-visual {
    display: none;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: -100px;
}

.hero-circle-wrapper {
    position: relative;
}

.hero-circle-outer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.3), rgba(200, 16, 46, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle-middle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.4), rgba(200, 16, 46, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-years-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-foreground);
    line-height: 1;
}

.hero-years-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Floating Elements */
.hero-float-1,
.hero-float-2 {
    position: absolute;
    background-color: var(--card);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card-hover);
    animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
    top: -1rem;
    right: -1rem;
    width: 48px;
    height: 48px;
}

.hero-float-2 {
    bottom: -1rem;
    left: -1rem;
    width: 40px;
    height: 40px;
    animation-delay: 1s;
}

.hero-float-1 svg,
.hero-float-2 svg {
    color: var(--primary);
}

.hero-float-1 svg {
    width: 24px;
    height: 24px;
}

.hero-float-2 svg {
    width: 20px;
    height: 20px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: left;
        margin: 0;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-visual {
        display: flex;
    }

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

@media (min-width: 1024px) {
    .hero {
        padding-top: 140px;
    }

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

    /* Badge 20+ anos */
    .hero-circle-outer {
        width: 180px;
        height: 180px;
    }

    .hero-circle-middle {
        width: 155px;
        height: 155px;
    }

    .hero-circle-inner {
        width: 130px;
        height: 130px;
    }

    .hero-years-number {
        font-size: 2.5rem;
    }

    .hero-years-text {
        font-size: 0.9rem;
    }

    .hero-float-1,
    .hero-float-2 {
        display: none;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 1.75rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--primary);
}

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

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

    .section-title {
        font-size: 2.25rem;
    }
}

/* ===== FEATURED PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), rgba(200, 16, 46, 0.7));
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    height: 200px;
    background-color: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.product-card:hover .product-card-title {
    color: var(--primary);
}

.product-card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card-hover-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s;
    pointer-events: none;
}

.product-card:hover .product-card-hover-border {
    border-color: rgba(200, 16, 46, 0.3);
}

.product-card-title-link {
    text-decoration: none;
    color: inherit;
}

.product-card-title-link:hover .product-card-title {
    color: var(--primary);
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-cart-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-cart-sm:hover {
    background: var(--primary);
    color: white;
}

.btn-cart-sm svg {
    stroke: currentColor;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card-image {
        height: 256px;
    }
}

/* ===== ABOUT HISTORY SECTION (Sobre Nos) ===== */
.about-history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-history-content {
    max-width: 600px;
}

.about-history-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.about-history-title .highlight {
    color: var(--primary);
}

.about-history-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-history-text p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    position: relative;
    background-color: var(--card);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s;
}

.stat-card:hover .stat-card-icon {
    background-color: rgba(200, 16, 46, 0.2);
    transform: scale(1.1);
}

.stat-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.stat-card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-card-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.stat-card-hover-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s;
    pointer-events: none;
}

.stat-card:hover .stat-card-hover-border {
    border-color: rgba(200, 16, 46, 0.3);
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .stat-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .stat-card-number {
        font-size: 1.875rem;
    }

    .stat-card-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .about-history-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-history-title {
        font-size: 2.25rem;
    }
}

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

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

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-decoration {
    display: none;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 128px;
    height: 128px;
    background-color: var(--secondary);
    border-radius: 1rem;
    z-index: -1;
}

.about-content {
    space-y: 2rem;
}

.about-title {
    font-size: 1.75rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-highlight-item span {
    color: var(--foreground);
    font-weight: 500;
}

@media (min-width: 640px) {
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-image-decoration {
        display: block;
    }

    .about-title {
        font-size: 2.25rem;
    }
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.value-card:hover .value-card-icon {
    background-color: rgba(200, 16, 46, 0.2);
    transform: scale(1.1);
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.value-card-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.value-card-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.value-card-hover-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s;
    pointer-events: none;
}

.value-card:hover .value-card-hover-border {
    border-color: rgba(200, 16, 46, 0.3);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-card-icon {
        width: 56px;
        height: 56px;
    }

    .value-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .value-card-number {
        font-size: 2.25rem;
    }

    .value-card-label {
        font-size: 0.875rem;
    }
}

/* ===== EQUIPMENT CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-card {
    position: relative;
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-card-image {
    height: 208px;
    background-color: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.category-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.category-card:hover .category-card-title {
    color: var(--primary);
}

.category-card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex: 1;
}

.category-card-title-link {
    text-decoration: none;
    color: inherit;
}

.category-card-title-link:hover .category-card-title {
    color: var(--primary);
}

.category-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.category-card-actions .btn {
    width: 100%;
}

.category-card .btn {
    width: 100%;
    margin-top: auto;
}

.category-card-hover-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s;
    pointer-events: none;
}

.category-card:hover .category-card-hover-border {
    border-color: rgba(200, 16, 46, 0.3);
}

/* Red Category Cards - Equipamentos Page */
.category-card-red {
    background-color: var(--primary);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.category-card-red:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200, 16, 46, 0.4);
}

.category-card-red-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-red-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-card-red-icon img[src$=".svg"] {
    width: 100%;
    height: 100%;
    transform: scale(1.8);
}

.category-card-red-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.category-card-red-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    flex: 1;
}

.btn-white-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-white-red:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.btn-white-red svg {
    stroke: var(--primary);
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Equipment Grid (same as categories but for equipment listing) */
.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .equipment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== LOCATION SECTION ===== */
.location-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
}

.location-address svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--pta-graphite), var(--pta-gray-medium));
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 0;
}

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

.footer-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-address svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--pta-graphite), var(--pta-gray-medium));
    padding: 140px 0 80px;
}

.page-hero-title {
    font-size: 2.25rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.page-hero-title .highlight {
    color: var(--primary);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 160px 0 100px;
    }

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

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.75rem;
    }
}

/* ===== SEARCH BAR ===== */
.search-section {
    padding: 3rem 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
}

.search-input {
    width: 100%;
    height: 56px;
    padding: 0 1rem 0 3rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--card);
    color: var(--foreground);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.filter-btn {
    height: 56px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--card);
    color: var(--foreground);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

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

/* ===== BLOG ===== */
.blog-hero {
    background-color: var(--primary);
    padding: 140px 0 80px;
    text-align: center;
}

.blog-hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-foreground);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-hero-title {
    font-size: 2.25rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-hero {
        padding: 160px 0 100px;
    }

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

.blog-filters {
    padding: 2rem 0;
    background-color: var(--muted);
}

.blog-filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.blog-category-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--card);
    color: var(--foreground);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-category-btn:hover {
    background-color: rgba(200, 16, 46, 0.1);
}

.blog-category-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

@media (min-width: 768px) {
    .blog-filters-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background-color: var(--card);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s;
}

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-meta svg {
    width: 16px;
    height: 16px;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card-read-time {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card-image img {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(200, 16, 46, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-form-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== MISSION VISION VALUES ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mvv-card {
    background-color: rgba(75, 75, 75, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.mvv-card:hover {
    border-color: rgba(200, 16, 46, 0.5);
}

.mvv-card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.mvv-card:hover .mvv-card-icon {
    transform: scale(1.1);
}

.mvv-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-foreground);
}

.mvv-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.mvv-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== WORK PRINCIPLES ===== */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--card);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
}

.principle-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.principle-item span {
    font-weight: 500;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== STRUCTURE IMAGES ===== */
.structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.structure-grid img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s;
}

.structure-grid img:hover {
    box-shadow: var(--shadow-card-hover);
}

@media (min-width: 768px) {
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .structure-grid img {
        height: 320px;
    }
}

/* ===== QUICK CATEGORIES ICONS ===== */
.quick-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .quick-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .quick-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.quick-category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--primary);
    border: none;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.quick-category-box:hover {
    background: var(--primary-dark, #a00d28);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
    transform: translateY(-4px);
}

.quick-category-box:hover .quick-category-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.quick-category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.quick-category-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.quick-category-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.quick-category-icon img[src$=".svg"] {
    width: 80px;
    height: 80px;
    transform: scale(1.8);
}

.quick-category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* ===== SHOPPING CART ===== */
.cart-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(200, 16, 46, 0.5);
}

.cart-float svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--pta-graphite);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--card);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.cart-modal.active {
    right: 0;
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--muted);
}

.cart-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-modal-close:hover {
    background: var(--border);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-foreground);
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cart-empty span {
    font-size: 0.875rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.cart-item-category {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-qty-value {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: hsl(0, 80%, 95%);
    color: hsl(0, 80%, 50%);
}

.cart-modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--muted);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cart-total strong {
    font-size: 1rem;
}

.cart-whatsapp-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--pta-whatsapp);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-whatsapp-btn:hover {
    background: hsl(142, 70%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cart-whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

.cart-clear-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-clear-btn:hover {
    background: var(--muted);
    color: var(--foreground);
}

/* Add to Cart Button */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--pta-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-add-cart svg {
    width: 20px;
    height: 20px;
}

.btn-add-cart.added {
    background: var(--pta-whatsapp);
}

.btn-add-cart.added:hover {
    background: hsl(142, 70%, 42%);
}
