* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Azul como cor principal */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    /* Neutrals */
    --background: #ffffff;
    --foreground: #1e293b;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

.btn-primaryy {
    width: 300px;
    text-decoration: none;
    background-color: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s 
ease;
    font-size: 0.875rem;
    line-height: 1;
    gap: 0.5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    box-shadow: 0 10px 30px -10px rgba(29, 78, 216, 0.3);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #f59e0b;
    border-radius: 50%;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.navigation {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navigation {
        display: flex;
    }
}

.nav-item {
    display: flex;
    align-items: center;
    color: white;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #93c5fd;
}

.dropdown-icon {
    margin-left: 0.25rem;
    width: 1rem;
    height: 1rem;
}

.cta-button {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2579E8;
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--muted-foreground);
}

.logo-text img {
    margin-left: 12%;
    margin-top: 5%;
    width: 250px;
    height: 90px;
}

.logo-text-mobile {
    display: none;
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.phone-number a {
    color: var(--foreground);
    text-decoration: none;
}

.phone-number a:hover {
    color: var(--primary);
}

.btn-text-short {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    right: -100%;
    width: 20rem;
    height: calc(100vh - 4rem);
    background: var(--background);
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--foreground);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

a{text-decoration: none;}

@media (min-width: 768px) {
    .cta-button {
        display: inline-flex;
    }
}

.cta-button:hover {
    background-color: #d97706;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 24rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.8), rgba(59, 130, 246, 0.8)), url('hero-background-COhzCi_U.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    display: inline-block;
}

/* Main Content */
.main {
    min-height: 100vh;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr 1fr;
    }
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
}

.product-image-container {
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #1d4ed8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-description p {
    color: #6b7280;
    line-height: 1.75;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Technical Specifications */
.tech-specs {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.spec-item {
    display: flex;
    justify-content: space-between;
}

.spec-label {
    color: #6b7280;
}

.spec-value {
    color: #1f2937;
    font-weight: 500;
}

.spec-valuee {
    color: #1f2937;
    font-weight: 500;
    width: 300px;
    padding-left: 7%;
    position: absolute;
}

/* Applications */
.applications {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.application-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #1d4ed8;
    border-radius: 50%;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #1d4ed8;
    flex-shrink: 0;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card.protection {
    border-left: 4px solid #1d4ed8;
}

.info-card.professional {
    border-left: 4px solid #f59e0b;
}

.info-card.documentation {
    border-left: 4px solid #10b981;
}

.info-icon {
    color: #1d4ed8;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

.download-link {
    background: none;
    border: none;
    color: #1d4ed8;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.875rem;
}

.download-link:hover {
    color: #93c5fd;
}

/* CTA Section */
.cta-section {
    padding-top: 1.5rem;
}

.cta-main {
    width: 100%;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-main:hover {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}
