@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root{
    --hero: url("../img/hero_5.jpg");
    --hero-mobile: url("../img/hero_mobile_2.jpg");
    --primary: #fea000;
    --primary-hover: #f7aa14;
}

/* FONTS */
.roboto {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

.funnels {
  font-family: "Funnel Sans", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

body, html{
    font-family: "Funnel Sans", monospace;
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero{
    margin-top: 60px;
    height: 80dvh;
}

@media only screen and (min-width: 800px) {
    .hero{
        background: var(--hero) no-repeat 70% top;
        background-size: cover;
    }
}

@media only screen and (max-width: 800px) {
    .hero{
        background: var(--hero-mobile) no-repeat center;
        background-size: cover;
    }
}

.subtitle{
    text-decoration: underline var(--primary) 8px;
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.btn-primary{
    background-color: var(--primary) !important;
    color: #fff !important;
    border: none;
}
.btn-primary:hover{
    background-color: var(--primary-hover) !important;
    color: #444 !important;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.flex-basis{
    flex-basis: 400px;
}
.text-primary{
    color: var(--primary) !important;
}
