/* Import de fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Variáveis */
:root {
    --font-primary: 'Poppins', sans-serif;
    --color-bg: #fafafa;
    --color-header: #222;
    --color-primary: #00d9ff;
    --color-text: #333;
    --color-text-light: #fff;
    --color-cta: #25D366;
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* ===== SLIDER ===== */
.swiper-container {
    width: 100%;
    /* altura adaptável: entre 25vh e 40vh */
    height: clamp(200px, 35vh, 400px);
    position: relative;
    margin-bottom: 20px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== HEADER & NAV ===== */
header {
    position: sticky;
    top: 0;
    background: var(--color-header);
    z-index: 1000;
}

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

.logo-text {
    color: var(--color-text-light);
    font-size: 1.75rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-text-light);
    margin: 5px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-menu li a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
}

.content-section {
    text-align: center;
    margin-bottom: 40px;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.125rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.75;
    letter-spacing: 0.5px;
}

.image-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-link {
    flex: 1 1 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.image-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.image-link p {
    padding: 12px;
    font-weight: 600;
    color: var(--color-text);
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-cta);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-cta:hover {
    transform: scale(1.05);
}

.whatsapp-cta img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--color-header);
    color: var(--color-text-light);
    text-align: center;
    padding: 20px;
}

.footer-link {
    color: var(--color-primary);
    text-decoration: none;
    display: block;
    margin-top: 8px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--color-header);
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .swiper-container {
        height: clamp(150px, 30vh, 300px);
    }
}