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

:root {
    --primary: #003366;
    --secondary: #001a33;
    --accent: #00cc66;
    --light: #f0f4f8;
    --dark: #001a33;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

header {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, white 0%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00cc66;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23003366" width="1200" height="800"/><circle cx="200" cy="200" r="150" fill="%230055aa" opacity="0.3"/><circle cx="1000" cy="600" r="200" fill="%230055aa" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
}

.hero-media {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-media video,
.hero-media img {
    max-width: 100%;
    width: 340px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00cc66;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 204, 102, 0.4);
    margin: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #00b359;
    box-shadow: 0 10px 25px rgba(0, 204, 102, 0.6);
}

section {
    padding: 5rem 2rem;
}

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

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: white;
    position: relative;
    background-color: #1e3347b0;
    border-radius: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #003366 0%, #00cc66 100%);
}

.about {
    background: var(--light);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.img {
   width: auto;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--primary);
}
.about-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
.about-card h4 {
    margin-top: 1rem;
    color: var(--primary);
}

.products {
    background: rgb(6, 26, 53);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    gap: 2rem;
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366 0%, #00cc66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2rem;
   
}

.product-image video,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    color:black ;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-showcase {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.product-showcase video {
    max-width: 100%;
    width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits {
    background: var(--dark);
    color: rgb(255, 255, 255);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 3rem;
    color: #00cc66;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profit-highlight {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00cc66;
    margin: 1rem 0;
}

.how-to {
    background: var(--dark);
    color: #003366;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #00cc66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 204, 102, 0.4);
}

.step h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--secondary);
}

.results {
     background: var(--dark);
    text-align: center;
}

.stats {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
      background: var(--dark);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    background: linear-gradient(135deg, #003366 0%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.catalog-section {
    background: var(--dark);
    text-align: center;
}

.catalog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.catalog-links a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
}

.catalog-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact {
    background: var(--dark);
    color: white;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-5px);
}

.instagram {
    background: #00cc66;
    color: white;
}

.instagram:hover {
    transform: translateY(-5px);
}

.contact-button i {
    font-size: 2rem;
}

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-instagram {
    background: #00cc66;
}

footer {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: white;
}

.footer-logo {
    min-width: 100VW;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.2);
}

.zoom-container {
    max-width: 43rem;
    height: auto;
    margin: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-media video,
    .hero-media img {
        width: 100%;
        max-width: 340px;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .zoom-container {
        max-width: 350px;
        max-width: 23rem;
        overflow: hidden;
        border-radius: 8px;
    }

    .zoom-container img {
        width: 100%;
        transition: transform 0.5s ease;
    }

    .zoom-container:hover img {
        transform: scale(1.2);
    }

    /* Para dispositivos móveis: zoom ao tocar */
    @media (hover: none) and (pointer: coarse) {
        .zoom-container img:active {
            transform: scale(1.2);
        }
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    section {
        padding: 3rem 1rem;
    }

    footer {
        min-width: 300px;
        min-height: 600px;

    }




    .zoom-container {
        background: var(--secondary);
        max-width: 20rem;
        overflow: hidden;
        border-radius: 8px;
    }

    .zoom-container img {
        max-width: 300px;
        transition: transform 0.5s ease;
    }

    .zoom-container:hover img {
        transform: scale(1.2);
    }

    /* Para dispositivos móveis: zoom ao tocar */
    @media (hover: none) and (pointer: coarse) {
        .zoom-container img:active {
            transform: scale(1.2);
        }
    }
}