/* assets/css/custom.css */
@font-face {
    font-family: 'tarunowide-mediumitalic';
    src: url('tarunowide-mediumitalic-webfont.woff2') format('woff2'),
         url('tarunowide-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #AF005F;
    --secondary-color: #FF1A75;
    --dark-color: #4b4b4d;
    --light-color: #F4F4F4;
    --font-family-base: 'Roboto', sans-serif;
}

/* Estilos Globais */
body {
    font-family: var(--font-family-base);
    color: var(--dark-color);
    line-height: 1.6;
}

.transparent{opacity: 0.7;}

/* Tipografia */

h1 {
    font-family: 'tarunowide-mediumitalic';
    color: var(--primary-color);
    font-weight: 700;
	font-size: 30pt !important;
	}

h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
    color: var(--primary-color);
    font-weight: 700;
}

.white{
	color:#fff;
}

.black{
	background-color: var(--dark-color);
}

/* Hero Section com Vídeo */
.hero-video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(175, 0, 95, 0.7); /* Rosa com opacidade */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Botões Personalizados */
.btn-custom-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-custom-outline {
    background-color: #f9f9f9;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Responsividade para o Hero */
@media (max-width: 768px) {
    .hero-video-container {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 50px 15px;
        text-align: center;
    }
}


/* Navbar Personalizada */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
	font-size: 14pt;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
    color: var(--light-color);
}

footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Formulários */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(175,0,95,0.25);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    .navbar-brand img {
        max-width: 150px;
    }
}

.logo{
	width: 250px;
}

/* Novos estilos para home */
.circle-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(175,0,95,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
}

.newsletter {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
}


/* Utilitários */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Efeitos de Hover */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--light-color);
    padding: 50px 0;
    text-align: center;
}

.newsletter-input {
    max-width: 400px;
    margin: 0 auto;
}
