* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}


.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 120px; 
    width: auto;
    display: block;
    background: transparent; 
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); 
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333; 
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #25d366;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    color: #25d366;
}

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


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333; 
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.6)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #eaeaea;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn.primary {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn.primary:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn.large {
    padding: 18px 42px;
    font-size: 1.1rem;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}


.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.services-subtitle {
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}


.service-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #25d366, #1ebe5d, #17a34a);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.2);
}

.service-icon-wrapper {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.service-card .icon {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #25d366;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}


.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .btn.primary {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn.primary:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}


footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #25d366;
}

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

.social-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
    border-radius: 8px;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}


.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.instagram-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
}

.instagram-float:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.5);
}



@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .services h2,
    .about h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}


@media (max-width: 768px) {
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.3rem;
    }

    
    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn.large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    
    .about,
    .services,
    .cta-section {
        padding: 60px 20px;
    }

    .about h2,
    .services h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .about-text,
    .services-subtitle,
    .cta-section p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    
    .whatsapp-float,
    .instagram-float {
        width: 55px;
        height: 55px;
        right: 20px;
    }

    .whatsapp-float {
        bottom: 85px;
    }

    .instagram-float {
        bottom: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .about h2,
    .services h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card .icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .scroll-indicator {
        display: none;
    }
}


.gallery-button-wrapper {
    margin-top: 50px;
}

.btn.secondary {
    background: transparent;
    color: #222;
    border: 2px solid #25d366;
}

.btn.secondary:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

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

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.whatsapp-float, .instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float {
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
}

.instagram-float {
    bottom: 110px;
    right: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

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


.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}


/* --- LAYOUT DE GRADE PARA GALERIA --- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 25px; /* Bordas arredondadas conforme imagem */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #eee;
}

.carousel-images {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0; /* Escondido por padrão */
}

.carousel-container:hover .carousel-button {
    opacity: 1;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-button.prev { left: 15px; }
.carousel-button.next { right: 15px; }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 25px;
    pointer-events: none;
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .carousel-button {
        opacity: 1;
    }
}
