@import url("variables.css");

:root {
    --primary: #ffffff;

    --fontPrimary: sans-serif;
     --fontSignature: 'FunkySignature', cursive;
}

@font-face {
  font-family: 'FunkySignature';
  src: url('fonts/Funky Signature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    font-family: var(--fontPrimary);
    background-color: var(--RoxoMedio);
    color: var(--primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container{
    font-family: var(--fontPrimary);
    font-weight: 200;
}

.whatsapp-fixed {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--primary);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}
.whatsapp-fixed:hover {
    transform: scale(1.1);
}
.whatsapp-fixed i {
    margin-top: 15px;
}

.navbar {
    background-color: var(--RoxoEscuro);
    backdrop-filter: blur(10px);

    border-bottom: 2px solid transparent; /* largura da borda */
    border-image: var(--gold) 1;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 200;
    transition: color 0.3s ease;
    font-family: var(--fontPrimary);
}

.nav-button{
    background-color: var(--RoxoEscuro);
    border: none;
    padding: 10px 20px;
    font-family: var(--fontPrimary);
    font-weight: 200;

    background: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; 
}

.nav-button:hover,
.nav-button.active {
    background-color: var(--RoxoMedio) !important;

    font-family: var(--fontPrimary);
    font-weight: 200;

    background-image: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.nav-link:hover,
.nav-link.active {
    background-image: var(--gold) !important;

    background-clip: text !important;
    -webkit-background-clip: text !important;

    color: transparent !important;
}

.hero-section {
    padding: 6rem 0;
}

.hero-section h1 {
    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    font-family: var(--fontSignature);
    font-weight: 300;
}

.hero-section .lead {
    color: var(--primary);
    font-family: var(--fontPrimary);
    font-weight: 200;
    white-space: pre-line;
}

.hero-section .btn-outline-secondary {
    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    border: 1px solid transparent;
    border-image: var(--gold) 1;
}

.hero-section .btn-outline-secondary:hover {
    background-color: var(--RoxoEscuro);
    color: var(--primary);
}

.hero-section a{
    text-decoration: none;
    color: var(--primary);
    font-family: var(--fontPrimary);
    font-weight: 130;
}

.portifolio {
    padding: 6rem 0;
    background-color: var(--RoxoClaro);
}

.portifolio .btn-outline-secondary {
    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    border: 1px solid transparent;
    border-image: var(--gold) 1;
}

.portifolio h1 {
    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    font-family: var(--fontSignature);
    font-weight: 300;
}

.port-card {
    display: flex;
    flex-direction: row;
    background-color: #0b233f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform .3s ease;
    position: relative;
    width: 100%;
    min-height: 220px;
}

.port-card:hover {
    transform: translateY(-6px);
}

.port-img {
    flex: 0 0 30%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.port-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.port-title {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
    text-align: center;
    font-size: 1.8rem;

    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: var(--fontSignature);
    font-weight: 500;
}

.port-hover {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.96);
    color: #000;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    font-size: 1.1rem;
    transition: opacity .3s ease;
}

.port-card:hover .port-hover {
    opacity: 80%;
}

.dicas{
    background-color: var(--RoxoMedio);
}

.blog-section {
    background-color: var(--RoxoMedio);
    color: var(--primary);
}

.blog-title {
    font-family: var(--fontSignature);
    font-size: 3rem;
    font-weight: 300;

    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.blog-subtitle {
    color: #d6d6d6 !important;
    font-size: 1rem;
}

.blog-card {
    background-color: var(--RoxoClaro);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.blog-card-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.gold-icon {
    background-image: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.blog-card .card-text {
    color: var(--primary);
    font-weight: 200;
}

footer{
    font-family: var(--fontPrimary);
    font-weight: 200;
    background-color: var(--RoxoEscuro);

    border-top: 2px solid transparent; /* largura da borda */
    border-image: var(--gold) 1;
}