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

body {
    background-color: #ffffff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #000000 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.3rem;
    color: #fff;
}

.sub_logo {
    font-size: 8px;
    letter-spacing: 3px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 2px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s;
}

nav a:hover {
    color: #00ff88;
}

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

nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero h1 {
    opacity: 1;
    transform: none;
}

.hero p {
    opacity: 1;
    transform: none;
}

.btn {
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    opacity: 1;
}

.btn:hover {
    background: #00ff88;
    color: #000;
    border-color: #00ff88;
}

.products {
    padding: 150px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: black;
    border: 1px solid #000000;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.products.is-floating {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.explore-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.explore-card a:hover {
    color: #000;
}

.section-header {
    margin-bottom: 80px;
    opacity: 0;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.card {
    background: #111;
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

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

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: 0.5s;
}

.card:hover .card-img {
    filter: grayscale(0%);
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.stats {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 140px 60px;
    text-align: center;
}

.stats-top {
    margin-bottom: 60px;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 20px;
}

.stats h2 {
    font-size: 60px;
    font-weight: 300;
}

.stats h2 span {
    color: #0fa05c;
}

.stats-line {
    width: 100%;
    height: 1px;
    background: #000000;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.stat h3 {
    font-size: 70px;
    font-weight: 300;
}

.stat p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 10px;
    color: #aaa;
}

.gallery {
    padding: 150px 60px;
    background: #000000;
    color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 300;
}

.gallery-header p {
    color: #777;
    margin-top: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #00ff88;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ff88;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-location {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
}

.footer-location i {
    font-size: 1.5rem;
    color: #00ff88;
    margin-top: 3px;
}

.footer-location strong {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #00ff88;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    color: #ccc;
}

.contact-item i {
    font-size: 1.2rem;
    width: 25px;
    color: #00ff88;
}

.contact-item a {
    color: #ccc;
}

.contact-item.whatsapp a:hover {
    color: #25D366;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.social-btn.instagram {
    background: #E4405F;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.tiktok {
    background: #000;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.4rem;
}

.payment-icons i {
    color: #ccc;
    transition: 0.3s;
}

.payment-icons i:hover {
    color: #00ff88;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #888;
}

.footer-bottom a {
    color: #ccc;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #00ff88;
}

/* RESPONSIVIDADE COMPLETA */

/* Mobile First - Tablets e acima */
@media (min-width: 769px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
        gap: 30px;
    }
}

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 20px 30px;
    }
    
    .products {
        padding: 120px 30px;
        border-radius: 30px;
    }
    
    .stats {
        padding: 100px 40px;
    }
    
    .stats h2 {
        font-size: 45px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .gallery {
        padding: 120px 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .footer-container {
        padding: 0 30px;
        gap: 50px;
    }
}

/* Tablets pequenos (até 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .products {
        padding: 100px 20px;
        border-radius: 25px;
    }
    
    .explore-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .card-img {
        height: 200px;
    }
    
    .stats {
        padding: 80px 20px;
    }
    
    .stats h2 {
        font-size: 35px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat h3 {
        font-size: 50px;
    }
    
    .gallery {
        padding: 100px 20px;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .sub_logo {
        font-size: 7px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .products {
        padding: 80px 15px;
        border-radius: 20px;
    }
    
    .explore-card {
        padding: 25px 15px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .grid {
        gap: 30px;
    }
    
    .card {
        padding: 15px;
    }
    
    .card-img {
        height: 180px;
    }
    
    .card-info h3 {
        font-size: 1.3rem;
    }
    
    .stats {
        padding: 60px 15px;
    }
    
    .stats-top {
        margin-bottom: 40px;
    }
    
    .stats h2 {
        font-size: 28px;
    }
    
    .stats-line {
        margin: 40px 0;
    }
    
    .stat h3 {
        font-size: 40px;
    }
    
    .gallery {
        padding: 80px 15px;
    }
    
    .gallery-header {
        margin-bottom: 60px;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 35px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .payment-icons {
        gap: 8px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        margin-top: 50px;
        padding-top: 25px;
    }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
    .products {
        padding: 70px 12px;
    }
    
    .stats {
        padding: 50px 12px;
    }
    
    .gallery {
        padding: 70px 12px;
    }
    
    .section-header h2,
    .gallery-header h2 {
        font-size: 1.6rem;
    }
    
    .card-img {
        height: 160px;
    }
    
    .stat h3 {
        font-size: 35px;
    }
}