/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DD211B;
    --secondary-color: #7D8ABF;
    --accent-color: #46C8C8;
    --text-dark: #000000;
    --text-gray: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-gray-50: #F9FAFB;
    --bg-gray-100: #F3F4F6;
    --bg-gray-200: #E5E7EB;
    --border-color: #E5E7EB;
    --highlight-bg: #43C9CA;
    --highlight-text: #000000;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-2xl: 24px;
    --border-radius-3xl: 32px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(125, 138, 191, 0.1);
    z-index: 50;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
    position: relative;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    opacity: 0.6;
}

.nav-desktop {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--highlight-bg);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions .btn-primary {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #B91C1C);
    box-shadow: 0 4px 15px rgba(221, 33, 27, 0.3);
}

.header-actions .btn-primary:hover {
    background: linear-gradient(135deg, #B91C1C, var(--primary-color));
    box-shadow: 0 8px 25px rgba(221, 33, 27, 0.4);
}

.header-actions .btn-primary:active {
    box-shadow: 0 4px 15px rgba(221, 33, 27, 0.5);
}

.header-actions .btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(221, 33, 27, 0.3);
}

.header-actions .btn-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.header-actions .btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.header-actions .btn-primary:hover i {
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #B91C1C);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--bg-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(221, 33, 27, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn:hover::before {
    width: 300%;
    height: 300%;
}

.mobile-menu-btn:hover::after {
    transform: translateX(100%);
}

.mobile-menu-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(221, 33, 27, 0.5);
}

.mobile-menu-btn:active {
    transform: translateY(-1px) scale(0.95);
    transition: all 0.1s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(125, 138, 191, 0.1);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mobile-nav-link i {
    font-size: 1.125rem;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: var(--border-radius);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.mobile-nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.mobile-nav-link:hover::after {
    left: 100%;
}

.mobile-nav-link:hover {
    color: var(--bg-white);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 8px 25px rgba(70, 200, 200, 0.3);
}

.mobile-nav-link:hover i {
    color: var(--bg-white);
    transform: scale(1.2) rotate(5deg);
}

.mobile-nav-link:active {
    transform: translateX(8px) scale(0.98);
    transition: all 0.1s ease;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--highlight-bg), #3AB5B6);
    color: var(--bg-white);
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(67, 201, 202, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    width: 300%;
    height: 300%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3AB5B6, var(--highlight-bg));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(67, 201, 202, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 0 4px 15px rgba(67, 201, 202, 0.5);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 201, 202, 0.3);
}

.btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.btn-large i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.btn-large:hover i {
    transform: translateX(3px);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6rem 0 4rem 0;
}

/* Formas geométricas coloridas nas laterais */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.12), rgba(67, 201, 202, 0.05));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 120px;
    height: 180px;
    background: linear-gradient(45deg, rgba(221, 33, 27, 0.10), rgba(221, 33, 27, 0.04));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-white);
    opacity: 1;
}

/* Formas geométricas laterais com cores intensas */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    width: 80px;
    height: 100px;
    background: linear-gradient(90deg, rgba(67, 201, 202, 0.30), rgba(67, 201, 202, 0.15));
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 70px;
    height: 120px;
    background: linear-gradient(270deg, rgba(221, 33, 27, 0.25), rgba(221, 33, 27, 0.12));
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Formas geométricas apenas nas laterais com cores intensas */
.hero-decoration-1 {
    position: absolute;
    top: 20%;
    left: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.25), rgba(67, 201, 202, 0.15));
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    z-index: 1;
}

.hero-decoration-2 {
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(221, 33, 27, 0.20), rgba(221, 33, 27, 0.10));
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase !important;
    display: inline-block;
    position: relative;
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.hero-title-container {
    position: relative;
    display: block;
    margin-bottom: 2.5rem;
    width: 100%;
    overflow: hidden;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: var(--text-dark);
    max-width: 100%;
    display: block;
}

.title-line-1 {
    display: block;
    white-space: nowrap;
    color: #7B8BC0;
}

.title-line-2 {
    display: block;
    white-space: nowrap;
}

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

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

.title-text {
    color: var(--text-dark);
}

.title-highlight {
    position: relative;
    color: var(--text-dark);
    display: inline-block;
    margin: 0 0.5rem;
    font-weight: 900;
}

.title-highlight-bg {
    display: none;
}

.title-highlight-text {
    position: relative;
    z-index: 10;
    color: var(--text-dark);
    font-weight: 900;
}

.hero-subtitle-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-subtitle-large {
        font-size: 2.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 36rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-link {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
}

.hero-link:hover {
    color: var(--highlight-text);
    border-color: var(--highlight-bg);
    background: rgba(67, 201, 202, 0.05);
}

.hero-link i {
    margin-left: 0.5rem;
    font-size: 1.125rem;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-image-mobile {
    display: none;
}

/* Container da imagem */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Formas geométricas com cores fortes na área da imagem */
.hero-image::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -25px;
    width: 80px;
    height: 120px;
    background: linear-gradient(45deg, rgba(67, 201, 202, 1), rgba(67, 201, 202, 1));
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -20px;
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(221, 33, 27, 1), rgba(221, 33, 27, 1));
    clip-path: polygon(0% 0, 75% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Imagem removida - estilos limpos */

.hero-stats {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background-color: var(--bg-gray-200);
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.375rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-white);
}

/* Service Categories */
.service-category {
    margin-bottom: 4rem;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 201, 202, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #43C9CA;
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(67, 201, 202, 0.3);
}

.category-icon i {
    font-size: 1.5rem;
    color: #43C9CA;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

/* Brands Section */
.brands-section {
    margin-bottom: 2rem;
}

.brands-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
    width: 200px;
    height: 120px;
    aspect-ratio: 1;
}

.brand-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(67, 201, 202, 0.2);
    border-color: rgba(67, 201, 202, 0.3);
}

.brand-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Logos específicas - KonicaMinolta e Ricoh maiores */
.brand-item:first-child .brand-img,
.brand-item:last-child .brand-img {
    max-height: 120px;
}

/* Cores específicas das marcas */
.brand-minolta .brand-icon {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.brand-ricoh .brand-icon {
    background: linear-gradient(135deg, #003DA5, #0066CC);
}

.brand-develop .brand-icon {
    background: linear-gradient(135deg, #E60012, #FF0000);
}

.brand-gestetner .brand-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.brand-nashuatec .brand-icon {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.brand-oki .brand-icon {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.brand-epson .brand-icon {
    background: linear-gradient(135deg, #059669, #10B981);
}

.brand-hp .brand-icon {
    background: linear-gradient(135deg, #0096D6, #00B4D8);
}

.brand-samsung .brand-icon {
    background: linear-gradient(135deg, #1428A0, #1E40AF);
}

.brand-xerox .brand-icon {
    background: linear-gradient(135deg, #1F2937, #374151);
}

.brand-toshiba .brand-icon {
    background: linear-gradient(135deg, #7C2D12, #DC2626);
}

.brand-lexmark .brand-icon {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
}

.brand-canon .brand-icon {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.brand-panasonic .brand-icon {
    background: linear-gradient(135deg, #059669, #10B981);
}

.brand-oliveti .brand-icon {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.brand-philips .brand-icon {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Brands Responsive */
@media (max-width: 640px) {
    .brands-track {
        gap: 1rem;
    }
    
    .brand-logo {
        width: 80px;
        height: 40px;
        padding: 4px;
    }
    
    .brand-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .brand-name {
        font-size: 0.6rem;
    }
    
    /* Botões Responsivos */
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .discover-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 70px;
        right: 15px;
        font-size: 1.2rem;
    }
}

/* Printers Showcase */
.printers-showcase {
    margin-top: 2rem;
}

.printer-category {
    margin-bottom: 3rem;
}

.printer-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.2);
}

.printers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.printer-item {
    background: var(--bg-white);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.printer-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(67, 201, 202, 0.15);
    border-color: rgba(67, 201, 202, 0.3);
}

.printer-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.05), rgba(67, 201, 202, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}

.printer-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: white;
    padding: 10px;
}

.printer-item:hover .printer-img {
    transform: scale(1.05);
}

/* Garantir que todas as imagens tenham o mesmo tamanho */
.printer-img {
    max-width: 100%;
    max-height: 100%;
    min-height: 200px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.printer-info {
    padding: 1.25rem;
}

.printer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.printer-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.printer-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.printer-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #10B981;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.printer-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    background-color: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-tag {
    background: rgba(67, 201, 202, 0.1);
    color: #43C9CA;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(67, 201, 202, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 1.2;
}

.feature-tag:hover {
    background: #43C9CA;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(67, 201, 202, 0.3);
}

/* Supplies Grid */
.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.supply-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(67, 201, 202, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
}

.supply-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 201, 202, 0.15);
    border-color: rgba(67, 201, 202, 0.3);
}

.supply-icon {
    font-size: 1.5rem;
    color: #43C9CA;
    background: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #43C9CA;
    transition: all 0.3s ease;
}

.supply-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(67, 201, 202, 0.3);
}

.supply-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

/* Office Materials Grid */
.office-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.material-category {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(67, 201, 202, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.material-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(67, 201, 202, 0.1);
    border-color: rgba(67, 201, 202, 0.2);
}

.material-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.1);
}

.material-category-header i {
    font-size: 1.25rem;
    color: #43C9CA;
    background: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #43C9CA;
    transition: all 0.3s ease;
}

.material-category-header i:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(67, 201, 202, 0.3);
}

.material-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.material-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.material-item {
    background: rgba(67, 201, 202, 0.06);
    color: var(--text-dark);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.material-item:hover {
    background: #43C9CA;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(67, 201, 202, 0.3);
    border-color: #43C9CA;
}

/* WhatsApp Card in Grid */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
    justify-content: center;
    grid-column: span 2;
}

.whatsapp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    z-index: 1;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.whatsapp-icon i {
    font-size: 2rem;
    color: white;
}

.whatsapp-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.whatsapp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-button i {
    font-size: 1.1rem;
}

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

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

.plan-card {
    background-color: var(--bg-white);
    border: 2px solid rgba(125, 138, 191, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.plan-popular {
    border-color: var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-image {
    height: 12rem;
    background-color: var(--bg-gray-100);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

.plan-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-period {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: var(--highlight-text);
    background: var(--highlight-bg);
    border-radius: 50%;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.08), rgba(67, 201, 202, 0.03));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 100px;
    height: 120px;
    background: linear-gradient(45deg, rgba(221, 33, 27, 0.06), rgba(221, 33, 27, 0.02));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(67, 201, 202, 0.15);
    border-color: rgba(67, 201, 202, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #43C9CA;
}

.benefit-card:hover .benefit-icon {
    background: #43C9CA;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(67, 201, 202, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #43C9CA;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #43C9CA;
}

.benefit-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-description {
    color: var(--text-dark);
}

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

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

.feature-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(67, 201, 202, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(67, 201, 202, 0.3);
}

.feature-icon-container {
    position: relative;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.05), rgba(67, 201, 202, 0.02));
    border-radius: 24px 24px 0 0;
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.1), rgba(67, 201, 202, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.2), rgba(67, 201, 202, 0.1));
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #43C9CA;
}

.feature-content {
    padding: 0 2rem 3rem;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #43C9CA;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: var(--text-dark);
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.02), rgba(67, 201, 202, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.feature-card[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.feature-card[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

.feature-card[data-aos-delay="400"] {
    animation-delay: 0.4s;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-img {
    width: 100%;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: top;
}

.about-image-mobile {
    display: none;
}

.about-image {
    display: block;
}

/* Desktop - esconder imagem mobile */
@media (min-width: 768px) {
    .about-image-mobile {
        display: none !important;
    }
    
    .about-image {
        display: block !important;
    }
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about .btn-primary {
    padding: 1.6rem 3.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(67, 201, 202, 0.3);
    transition: all 0.3s ease;
}

.about .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(67, 201, 202, 0.4);
}

.about-stat-card {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 201, 202, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.about-stat-card[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(67, 201, 202, 0.2);
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(67, 201, 202, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-icon {
    background: rgba(67, 201, 202, 0.15);
    transform: scale(1.05);
}

.stat-icon i {
    font-size: 1rem;
    color: #DD211B;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-icon i {
    color: #43C9CA;
    transform: scale(1.05);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.about-stat-card:hover .about-stat-number {
    color: #43C9CA;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.about-stat-card:hover .about-stat-label {
    color: var(--text-dark);
}

.stat-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 201, 202, 0.02);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.about-stat-card:hover .stat-hover-effect {
    opacity: 1;
}

/* Animações de entrada para about-stats */
.about-stat-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-stat-card[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.about-stat-card[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.about-stat-card[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, rgba(67, 201, 202, 0.08), rgba(67, 201, 202, 0.03));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 80px;
    height: 100px;
    background: linear-gradient(45deg, rgba(221, 33, 27, 0.06), rgba(221, 33, 27, 0.02));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    z-index: 2;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    flex-shrink: 0;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 201, 202, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(67, 201, 202, 0.15);
    border-color: rgba(67, 201, 202, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.testimonial-stars i:hover {
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(67, 201, 202, 0.1);
    padding-top: 1.5rem;
}

.author-info {
    text-align: center;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

    .testimonial-role {
        font-size: 0.9rem;
        color: var(--text-gray);
        font-weight: 500;
        margin: 0;
    }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(67, 201, 202, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #43C9CA;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #43C9CA;
    transform: scale(1.1);
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials-carousel {
        max-width: 600px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-stars i {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel {
        max-width: 100%;
        margin: 2rem auto 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-stars i {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Botões Estratégicos */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4B5563, #374151);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.4);
}

.btn-secondary i {
    order: 2;
}

.btn-secondary span {
    order: 1;
}

.section-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.discover-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Botão Flutuante WhatsApp */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

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

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(67, 201, 202, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 201, 202, 0.4);
}

/* Contact Section */
/* Discover Section */
.discover-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.discover-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(67, 201, 202, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(221, 33, 27, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.discover-text {
    padding-right: 2rem;
}

.discover-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.discover-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.discover-subdescription {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.discover-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(67, 201, 202, 0.3);
}

.discover-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 201, 202, 0.4);
}

.discover-button i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    order: 2;
}

.discover-button:hover i {
    transform: translateX(4px);
}

.discover-button span {
    order: 1;
}

.discover-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.discover-image-mobile {
    display: none;
}

.discover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f8f9fa;
}


.contact {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: #ef4444;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.8;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: #3AB5B6;
    transform: rotate(45deg);
    opacity: 0.7;
    z-index: 0;
}

.contact .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: #43C9CA;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.6;
    z-index: 0;
}

.contact .container::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 70px;
    height: 70px;
    background: #dc2626;
    border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    opacity: 0.5;
    z-index: 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -80px;
    width: 60px;
    height: 60px;
    background: #ef4444;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.6;
    z-index: -1;
}

.contact-content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 100px;
    height: 100px;
    background: #43C9CA;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 201, 202, 0.15);
    position: relative;
    overflow: hidden;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    z-index: 1;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(67, 201, 202, 0.15), 0 4px 16px rgba(67, 201, 202, 0.1);
    transform: translateY(-1px);
}

.contact-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 201, 202, 0.1);
}

.contact-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon-container {
    width: 3rem;
    height: 3rem;
    background-color: var(--highlight-bg);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--highlight-text);
}

.contact-item-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.contact-item-text {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

/* Location Section Styles - Improved */
.location-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.location-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 201, 202, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.8rem;
    color: white;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.location-address {
    color: #6b7280;
    line-height: 1.6;
}

.location-address p {
    margin-bottom: 0.25rem;
}

.location-address strong {
    color: #374151;
    font-weight: 600;
}

.contact-info {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #43C9CA;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.location-actions .btn-primary,
.location-actions .btn-secondary {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-actions .btn-primary {
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    color: white;
    border: none;
}

.location-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 201, 202, 0.4);
}

.location-actions .btn-secondary {
    background: white;
    color: #43C9CA;
    border: 2px solid #43C9CA;
}

.location-actions .btn-secondary:hover {
    background: #43C9CA;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 201, 202, 0.3);
}

.location-map {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 201, 202, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.map-container iframe {
    border-radius: 15px;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Mobile Responsive for Location */
@media (max-width: 768px) {
    .location-section {
        padding: 3rem 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .location-info {
        padding: 2rem;
        height: auto;
    }
    
    .location-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .location-icon {
        margin-bottom: 0.5rem;
    }
    
    .location-details {
        width: 100%;
    }
    
    .location-title {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .location-address {
        text-align: center;
        line-height: 1.8;
    }
    
    .location-actions {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .location-actions .btn-primary,
    .location-actions .btn-secondary {
        flex: none;
        width: 100%;
    }
    
    .location-map {
        padding: 1rem;
        height: auto;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

/* iPhone 13 Pro Max e dispositivos similares (428px) */
@media (max-width: 428px) {
    .hero-content {
        text-align: center !important;
        padding: 0 1rem;
    }
    
    .hero-text {
        text-align: center !important;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
        text-align: center !important;
    }
    
    .hero-title-container {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        text-align: center !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
        margin: 3.5rem auto 1rem auto;
    }
    
    .hero-description {
        text-align: center !important;
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-actions {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .title-highlight {
        display: inline-block;
        line-height: 1.3;
        vertical-align: baseline;
    }
    
    .title-highlight-text {
        line-height: 1.3;
        vertical-align: baseline;
    }
}

/* iPhones menores (iPhone SE, iPhone 12 mini, etc.) */
@media (max-width: 375px) {
    .hero-content {
        text-align: center !important;
        padding: 0 0.75rem;
    }
    
    .hero-text {
        text-align: center !important;
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 0 auto 1rem auto;
    }
    
    .hero-title-container {
        text-align: center !important;
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-subtitle {
        text-align: center !important;
        margin: 3rem auto 1rem auto;
        font-size: 0.8rem;
    }
    
    .hero-description {
        text-align: center !important;
        margin: 0 auto 1.5rem auto;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .location-info {
        padding: 1.5rem;
    }
    
    .location-section {
        padding: 2rem 0;
    }
    
    .location-title {
        font-size: 1.25rem;
    }
    
    .location-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
    }
    
    .location-icon i {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0b2a8e, #1a3ba0);
    color: var(--bg-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

.footer-logo {
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.footer-logo::before,
.footer-logo::after {
    display: none !important;
    content: none !important;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0;
    padding: 0;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Garantir que não há texto sendo exibido no footer-logo */
.footer-logo {
    font-size: 0;
    line-height: 0;
}

.footer-logo * {
    font-size: initial;
    line-height: initial;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #87CEEB;
    color: white;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
}

.footer-link:hover {
    color: #DD211B;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
}

.footer-contact-item i {
    margin-right: 0.5rem;
    color: #43C9CA;
    background: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #43C9CA;
    transition: all 0.3s ease;
}

.footer-contact-item i:hover {
    background: #87CEEB;
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-legal-link:hover {
    color: #DD211B;
}

/* Novos estilos para footer */
.footer-copyright-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-copyright-section {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.footer-dev-credit {
    text-align: center;
}

.dev-credit-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.dev-credit-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.dev-credit-link:hover {
    color: #DD211B;
    transform: scale(1.05);
}

.dev-credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s ease;
}

.dev-credit-link:hover::after {
    width: 100%;
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-contact-item {
        font-size: 0.9rem;
    }
    
    .dev-credit-text {
        font-size: 0.8rem;
    }
}

/* Páginas Legais */
.legal-page {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    border-radius: 16px;
    color: white;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section .section-title {
    color: #0b2a8e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.subsection-title {
    color: #43C9CA;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.legal-section p {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #43C9CA;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.cookies-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookies-table th {
    background: #43C9CA;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #374151;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:nth-child(even) {
    background: #F9FAFB;
}

/* Responsive para páginas legais */
@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-section .section-title {
        font-size: 1.3rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsividade adicional */
@media (max-width: 767px) {
    .header-actions .btn-primary {
        display: none;
    }
    
    .header {
        display: none !important;
    }
    
    .header-content {
        padding: 0.8rem 0;
    }
    
    /* Esconder menu mobile */
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Ajustar botão do header no mobile */
    .header-actions .btn-primary {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        min-width: auto !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .header-actions .btn-primary i {
        font-size: 0.8rem !important;
    }
    
    /* Hero Mobile Ajustes */
    .hero {
        min-height: auto;
        padding: 2rem 0 1rem 0;
        margin-top: 0;
    }
    
    /* Reduzir espaçamento entre seções no mobile */
    .services {
        padding: 3rem 0 2rem 0;
    }
    
    .features {
        padding: 2rem 0 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-text {
        order: 1;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
        min-height: 200px;
        padding: 0 0.5rem;
        margin: 1rem 0;
        position: relative;
    }
    
    .hero-image-mobile::before {
        content: '';
        position: absolute;
        top: 20px;
        left: -10px;
        width: 30px;
        height: 30px;
        background: #DD211B;
        border-radius: 50%;
        z-index: 1;
    }
    
    .hero-image-mobile::after {
        content: '';
        position: absolute;
        bottom: 20px;
        right: -10px;
        width: 25px;
        height: 25px;
        background: #43C9CA;
        border-radius: 50%;
        z-index: 1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        margin-top: 3.5rem;
        padding: 0.4rem 0.8rem;
        background: none;
        border-radius: 15px;
        display: block;
        white-space: normal;
        color: #DD211B;
        text-align: center;
        width: 100%;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 0;
        padding: 0 0.5rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .title-line-1,
    .title-line-2 {
        display: inline;
        white-space: nowrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-title-container {
        margin-bottom: 1rem;
        width: 100%;
        overflow: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Garantir que não há overflow horizontal */
    .hero * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-link {
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stat-card {
        padding: 0.875rem;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }
    
    .stat-icon i {
        font-size: 0.875rem;
    }
    
    .about-stat-number {
        font-size: 1.25rem;
    }
    
    .about-stat-label {
        font-size: 0.75rem;
    }
    
    .about .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .service-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .supply-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .brands-carousel {
        margin-top: 1rem;
    }
    
    .brands-track {
        gap: 1.5rem;
    }
    
    .brand-logo {
        width: 100px;
        height: 50px;
        padding: 6px;
    }
    
    .brand-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .brand-name {
        font-size: 0.65rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    .supplies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .supply-item {
        padding: 1.25rem;
    }
    
    .office-materials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .material-category {
        padding: 1rem;
    }
    
    .material-category-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .material-category-header i {
        font-size: 1rem;
        width: 32px;
        height: 32px;
    }
    
    .material-category-title {
        font-size: 0.9rem;
    }
    
    .material-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.375rem;
    }
    
    .material-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-card {
        padding: 1.25rem;
        gap: 1rem;
        min-height: 180px;
        flex-direction: column;
        text-align: center;
        grid-column: span 1;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 1.5rem;
    }
    
    .whatsapp-title {
        font-size: 1rem;
    }
    
    .whatsapp-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .whatsapp-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Benefits Responsive */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-title {
        font-size: 1.125rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
    
    /* Benefits Mobile */
    @media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.75rem;
    }
        
        .benefit-icon i {
            font-size: 1.125rem;
        }
        
        .benefit-title {
            font-size: 1rem;
        }
        
    .benefit-description {
        font-size: 0.8rem;
    }
    
    /* Discover Mobile */
    .discover-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discover-text {
        padding-right: 0;
        text-align: left;
    }
    
    .discover-title {
        font-size: 2rem;
    }
    
    .discover-description {
        font-size: 1rem;
    }
    
    .discover-subdescription {
        font-size: 0.9rem;
    }
    
    .discover-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .discover-image {
        display: none;
    }
    
    .discover-image-mobile {
        display: block;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        height: 300px;
        margin: 1.5rem 0;
    }
    
    .discover-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-title {
        font-size: 1.125rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
    
    /* Printers Mobile */
    .printers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .printer-item {
        margin-bottom: 1rem;
    }
    
    .printer-image {
        height: 180px;
    }
    
    .printer-img {
        padding: 6px;
    }
    
    .printer-info {
        padding: 1rem;
    }
    
    .printer-name {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .printer-desc {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
        margin-bottom: 0.125rem;
    }
    
    .printer-features {
        gap: 0.2rem;
        margin-top: 0.375rem;
    }
    
    .image-decoration-1,
    .image-decoration-2 {
        display: none;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* About Section Mobile */
@media (max-width: 767px) {
    .about-image-mobile {
        display: block !important;
        margin: 1rem 0;
    }
    
    .about-image {
        display: none !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        overflow: hidden;
    }
    
    .about {
        overflow: hidden;
        padding: 3rem 0;
    }
    
    .about-text {
        overflow: hidden;
    }
    
    .about-stats {
        overflow: hidden;
        margin-bottom: 1rem;
    }
    
    .about-description {
        overflow: hidden;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .about-title {
        overflow: hidden;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .about-img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Mobile Typography and Layout Standardization */
@media (max-width: 767px) {
    /* Padronizar todos os títulos principais */
    .section-title,
    .about-title,
    .hero-title,
    .category-title,
    .testimonial-section-title,
    .discover-title,
    .benefits-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    /* Padronizar todos os subtítulos */
    .section-description,
    .about-description,
    .hero-description,
    .category-description,
    .testimonial-section-description,
    .discover-description,
    .benefits-description {
        font-size: 0.9rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }
    
    /* Padronizar todos os botões */
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .section-cta .btn-primary,
    .discover-button,
    .about .btn-primary {
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    /* Títulos das seções de impressoras centralizados */
    .printer-section-title,
    .photocopier-section-title,
    .service-category h3,
    .category-header h3 {
        text-align: center !important;
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Headers das seções centralizados */
    .section-header {
        text-align: center !important;
    }
    
    .category-header {
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Formulário centralizado */
    .contact-form {
        text-align: center !important;
    }
    
    .form {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-label {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 16px;
    }
    
    .form-textarea {
        min-height: 140px;
    }
    
    .contact-form .btn-primary,
    .contact-form button,
    .form-group button {
        margin: 1rem auto 0 auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    /* Botões de seção CTA centralizados */
    .section-cta {
        text-align: center !important;
    }
    
    .section-cta .btn-primary {
        margin: 1rem auto !important;
    }
    
    /* Botões de discover centralizados */
    .discover-actions {
        text-align: center !important;
    }
    
    .discover-actions .btn-primary {
        margin: 0 auto !important;
    }
    
    /* Hero específico - centralizar títulos no mobile */
    .hero .hero-title {
        text-align: center !important;
    }
    
    .hero .hero-description {
        text-align: center !important;
    }
    
    .hero .btn-primary {
        margin: 0 auto !important;
    }
    
    /* Nomes das impressoras centralizados */
    .printer-name,
    .photocopier-name {
        text-align: center !important;
    }
    
    /* Footer legal links em uma linha no mobile */
    .footer-legal {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    
    .footer-legal-link {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }
}

/* Interface de Administração de Máquinas */
.printer-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.2);
}

.admin-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(67, 201, 202, 0.3);
}

.admin-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(67, 201, 202, 0.4);
}

.admin-toggle-btn i {
    font-size: 1.1rem;
}

/* Esconder botão de administrar em dispositivos móveis */
@media (max-width: 768px) {
    .admin-toggle-btn {
        display: none !important;
    }
}

.admin-panel {
    background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
    border: 2px solid rgba(67, 201, 202, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.1);
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.admin-title i {
    color: #43C9CA;
    font-size: 1.75rem;
}

.admin-close-btn {
    background: rgba(221, 33, 27, 0.1);
    color: #DD211B;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.admin-close-btn:hover {
    background: #DD211B;
    color: white;
    transform: scale(1.1);
}

.admin-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-add-machine,
.btn-import-machines,
.btn-export-machines {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-machine {
    background: linear-gradient(135deg, #43C9CA, #3AB5B6);
    color: white;
    box-shadow: 0 4px 16px rgba(67, 201, 202, 0.3);
}

.btn-add-machine:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 201, 202, 0.4);
}

.btn-import-machines {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-import-machines:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-export-machines {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-export-machines:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Botões de ação nas máquinas */
.printer-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.printer-item:hover .printer-actions {
    opacity: 1;
}

.printer-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-edit {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.btn-edit:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-delete {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.btn-delete:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Modais */
.login-modal,
.machine-modal,
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show,
.machine-modal.show,
.confirm-modal.show {
    opacity: 1;
    visibility: visible;
}

.login-content {
    max-width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-content .modal-header {
    background: #43C9CA;
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.login-content .modal-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-content .modal-title i {
    font-size: 1.4rem;
}

.login-content .modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #EF4444;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-content .modal-close-btn:hover {
    background: #DC2626;
    transform: scale(1.1);
}

.login-form {
    padding: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.login-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.login-form .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.login-form .form-input:focus {
    outline: none;
    border-color: #43C9CA;
    box-shadow: 0 0 0 3px rgba(67, 201, 202, 0.1);
}

.login-form .modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.login-form .btn-secondary {
    flex: 1;
    padding: 0.875rem 1rem;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    color: var(--text-gray);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.login-form .btn-secondary:hover {
    background: #E2E8F0;
    border-color: #CBD5E1;
}

.login-form .btn-primary {
    flex: 1;
    padding: 0.875rem 1rem;
    background: #10B981;
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.login-form .btn-primary:hover {
    background: #059669;
    transform: translateY(-1px);
}

.login-info {
    padding: 1rem 2rem 1.5rem;
    text-align: center;
    background: #F8FAFC;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid #E2E8F0;
}

.login-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

.login-info i {
    color: #43C9CA;
    font-size: 1rem;
}

/* Upload de Arquivo */
.file-upload-container {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 2px dashed rgba(67, 201, 202, 0.3);
    border-radius: 12px;
    background: rgba(67, 201, 202, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

.file-upload-label:hover {
    border-color: #43C9CA;
    background: rgba(67, 201, 202, 0.1);
    transform: translateY(-2px);
}

.file-upload-label i {
    font-size: 2rem;
    color: #43C9CA;
}

.file-upload-text {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.file-name {
    font-size: 0.9rem;
    color: #43C9CA;
    font-weight: 500;
    text-align: center;
    word-break: break-all;
}

.image-preview {
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.image-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-preview.show {
    display: block;
}

/* Botão de Logout */
.btn-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Contador de Caracteres */
.char-counter {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.char-counter.warning {
    color: #F59E0B;
}

.char-counter.danger {
    color: #EF4444;
}

#char-count {
    font-weight: 600;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.machine-modal.show .modal-content,
.confirm-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(67, 201, 202, 0.1);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.modal-close-btn {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close-btn:hover {
    background: #6B7280;
    color: white;
    transform: scale(1.1);
}

.machine-form {
    padding: 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem 2rem 2rem;
    border-top: 2px solid rgba(67, 201, 202, 0.1);
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    min-width: 120px;
}

/* Responsividade para administração */
@media (max-width: 768px) {
    .printer-category-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .btn-add-machine,
    .btn-import-machines,
    .btn-export-machines {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .machine-form,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
    }
}

/* Garantir que não há overflow horizontal */
* {
    max-width: 100%;
}

html {
    overflow-x: hidden;
}
