/* Variáveis de Cores */
:root {
    --white: #FFFFFF;
    --yellow: #FFDE59;
    --blue-light: #38B6FF;
    --blue-dark: #0056b3;
    --black: #121212;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    
    /* Variáveis de Tipografia */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 700;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-loose: 1.8;

    /* Cores das redes sociais */
    --facebook-color: #1877F2;
    --twitter-color: #1DA1F2;
    --instagram-color: #E4405F;
    --linkedin-color: #0A66C2;
    --youtube-color: #FF0000;
    --whatsapp-color: #25D366;
}


/* Estilos Gerais */
body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--black);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

.section-title, 
.display-1, 
.display-2, 
.display-3, 
.display-4, 
.display-5, 
.display-6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
}

.lead {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-loose);
}

.btn {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--blue-dark) !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(18, 18, 18, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 1.25rem;
}

.card-text {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
}

/* Botões */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--blue-light);
    border-color: var(--blue-light);
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-video {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 15px 25px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-video-icon {
    width: 50px;
    height: 50px;
    background-color: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 5px 15px rgba(255, 222, 89, 0.2);
    transition: all 0.3s ease;
}

.btn-video-icon i {
    color: var(--blue-dark);
    font-size: 1.2rem;
}

.btn-video:hover {
    color: var(--yellow);
}

.btn-video:hover .btn-video-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
}

.btn-video:hover .btn-video-icon i {
    transform: scale(1.2);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(18, 18, 18, 0.1);
    background-color: var(--white);
}

/* Seções */
section {
    padding: 80px 0;
}

section h2 {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--black);
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--blue-light);
}

/* Depoimentos */
.depoimentos .card {
    border: none;
    background-color: var(--gray-light);
}

.depoimentos .fa-quote-left {
    color: var(--yellow);
}

/* Footer */
footer {
    background-color: red;
   
}

footer h5 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    position: relative;
    margin-bottom: 1.5rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--yellow);
}

footer p, 
footer li, 
footer a {
    font-family: var(--font-body);
    
}

footer ul li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

footer ul li a:hover {
    padding-left: 5px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--yellow) !important;
}

footer .newsletter-form .form-control {
    font-family: var(--font-body);
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

footer .newsletter-form .btn {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    section {
        padding: 40px 0;
    }
    
    .card-img-top {
        height: 180px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Nova Hero Section Moderna */
.hero-modern {
    background-color: var(--blue-dark);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

.hero-content {
    padding: 2rem;
    padding-left: 4rem;
    color: var(--white);
    z-index: 10;
}

.badge-innovation {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(18, 18, 18, 0.8);
    color: var(--yellow);
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255, 222, 89, 0.3);
    font-size: 0.95rem;
}

.hero-headline {
    margin-bottom: 2rem;
}

.hero-headline-intro {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--white);
}

.hero-headline h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0.2rem 0;
    color: var(--white);
    position: relative;
    letter-spacing: -1px;
}

.hero-headline h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: var(--yellow);
    margin: 0.5rem 0 1rem;
}

.hero-headline-slogan {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.circle-container {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.circle-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background-color: rgba(56, 182, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite alternate;
}

.circle-outline {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(56, 182, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

.circle-outline-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1px solid rgba(56, 182, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    animation: rotate 20s linear infinite reverse;
}

.hero-people-img {
    position: relative;
    z-index: 5;
    width: 500px;
    height: auto;
}

.feature-tag {
    position: absolute;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(18, 18, 18, 0.1);
    z-index: 10;
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite alternate;
}

.feature-tag i {
    margin-right: 8px;
}

.tag-security {
    top: 30%;
    right: 5%;
    border-left: 4px solid var(--blue-light);
}

.tag-growth {
    bottom: 25%;
    left: 10%;
    border-left: 4px solid var(--yellow);
}

.tag-security i {
    color: var(--blue-light);
}

.tag-growth i {
    color: var(--yellow);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsividade para Hero Section */
@media (max-width: 1399px) {
    .circle-bg {
        width: 400px;
        height: 400px;
    }
    
    .circle-outline {
        width: 500px;
        height: 500px;
    }
    
    .circle-outline-2 {
        width: 550px;
        height: 550px;
    }
}

@media (max-width: 1199px) {
    .hero-headline h1 {
        font-size: 3.5rem;
    }
    
    .circle-bg {
        width: 350px;
        height: 350px;
    }
    
    .circle-outline {
        width: 450px;
        height: 450px;
    }
    
    .circle-outline-2 {
        width: 500px;
        height: 500px;
    }
    
    .hero-people-img {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding: 2rem;
        text-align: center;
    }
    
    .hero-modern {
        padding: 60px 0;
    }
    
    .hero-headline h1 {
        font-size: 3rem;
    }
    
    .hero-headline h1::after {
        margin: 0.5rem auto 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .circle-container {
        margin-top: 3rem;
    }
    
    .feature-tag {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-modern {
        min-height: auto;
        padding: 50px 0;
    }
    
    .hero-headline h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-video {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    .circle-bg {
        width: 300px;
        height: 300px;
    }
    
    .circle-outline {
        width: 350px;
        height: 350px;
    }
    
    .circle-outline-2 {
        width: 400px;
        height: 400px;
    }
}

/* Modal de Vídeo */
.modal-content.bg-dark {
    border: none;
    border-radius: 15px;
}

.modal-header .btn-close-white {
    background-color: #fff;
    opacity: 0.7;
}

.modal-header .btn-close-white:hover {
    opacity: 1;
}

/* Hero Vodafone Style */
.hero-vodafone {
    background-color: #0a1735;
    overflow: hidden;
    padding: 0;
}

#heroCarouselVodafone {
    width: 100%;
    overflow: hidden;
}

#heroCarouselVodafone .carousel-inner {
    position: relative;
}

#heroCarouselVodafone .carousel-item {
    min-height: 600px;
    background-color: var(--blue-dark);
    padding: 70px 0;
    position: relative;
}

#heroCarouselVodafone .container-fluid {
    position: relative;
}

#heroCarouselVodafone .hero-content {
    max-width: 500px;
    padding: 3rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    margin-left: 10%;
    position: relative;
    z-index: 3;
}

#heroCarouselVodafone .hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

#heroCarouselVodafone .hero-subtitle {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 8px 16px;
    background-color: rgba(18, 18, 18, 0.2);
    display: inline-block;
    border-radius: 30px;
    border-left: 3px solid var(--yellow);
}

#heroCarouselVodafone .hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
}

#heroCarouselVodafone .hero-buttons .btn {
    margin-right: 15px;
    margin-top: 15px;
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    font-weight: 600;
}

#heroCarouselVodafone .btn-primary {
    box-shadow: 0 5px 15px rgba(255, 222, 89, 0.3);
    transition: all 0.3s ease;
}

#heroCarouselVodafone .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.5);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

#heroCarouselVodafone .hero-image {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    z-index: 2;
}

#heroCarouselVodafone .hero-image.animate-in {
    opacity: 1;
    transform: translateX(0);
}

#heroCarouselVodafone .image-container {
    position: relative;
    width: 90%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 18, 18, 0.15);
    background-color: rgba(56, 182, 255, 0.05);
}

#heroCarouselVodafone .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 4s ease;
    transform: scale(1.1);
}

#heroCarouselVodafone .carousel-indicators {
    position: absolute;
    bottom: 20px;
    margin-bottom: 0;
    justify-content: center;
    z-index: 5;
}

#heroCarouselVodafone .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(56, 182, 255, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#heroCarouselVodafone .carousel-indicators .active {
    background-color: var(--blue-light);
}

#heroCarouselVodafone .carousel-control-prev,
#heroCarouselVodafone .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#heroCarouselVodafone:hover .carousel-control-prev,
#heroCarouselVodafone:hover .carousel-control-next {
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1399px) {
    #heroCarouselVodafone .carousel-item {
        min-height: 550px;
    }
    #heroCarouselVodafone .hero-img {
        object-position: center;
    }
}

@media (max-width: 1200px) {
    #heroCarouselVodafone .carousel-item {
        min-height: 500px;
    }
    #heroCarouselVodafone .hero-subtitle {
        font-size: 1.6rem;
    }
    #heroCarouselVodafone .hero-title {
        font-size: 2.5rem;
    }
    #heroCarouselVodafone .hero-img {
        object-position: center;
    }
}

@media (max-width: 991px) {
    #heroCarouselVodafone .carousel-item {
        min-height: auto;
    }
    #heroCarouselVodafone .hero-content {
        padding: 2rem 1.5rem;
    }
    #heroCarouselVodafone .hero-subtitle {
        font-size: 1.5rem;
    }
    
    #heroCarouselVodafone .hero-title {
        font-size: 2.2rem;
    }
    
    #heroCarouselVodafone .hero-img {
        object-position: center;
    }
}

@media (max-width: 767px) {
    #heroCarouselVodafone .carousel-item {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    #heroCarouselVodafone .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 1.5rem;
        order: 2;
    }
    
    #heroCarouselVodafone .hero-image {
        width: 100%;
        margin-top: 2rem;
        order: 1;
    }
    
    #heroCarouselVodafone .hero-img {
        height: 100%;
    }
    
    #heroCarouselVodafone .hero-buttons {
        justify-content: center;
    }
    
    #heroCarouselVodafone .carousel-indicators {
        bottom: 0;
    }
}

/* Hero Team */
.hero-team {
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../img/hero-2.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 40px;
    color: var(--white);
    text-align: center;
}

.hero-team h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-team p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero New Design */
.hero-new-design .hero-subtitle {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-body);
}

.hero-new-design .hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.hero-new-design .hero-description {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-heading);
}

/* Seção de Serviços */
.services-section .section-title {
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
}

.service-menu-item {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
}

.service-content p {
    font-family: var(--font-body);
    line-height: var(--line-height-normal);
}

.btn-aderir {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
}

/* FAQ Section */
.accordion-button {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.accordion-body p {
    font-family: var(--font-body);
    line-height: var(--line-height-loose);
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
}

/* Estatísticas */
.counter {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-extrabold);
}

.counter-text {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
}

/* Justificação de todos os parágrafos */
p, .description, .news-content p, article p {
    text-align: justify !important;
}

/* Estilos para ícones de redes sociais */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 5px;
}

/* Cores específicas para cada rede social */
.social-links a.facebook,
a[href*="facebook.com"] {
    background-color: var(--facebook-color) !important;
}

.social-links a.twitter,
a[href*="twitter.com"] {
    background-color: var(--twitter-color) !important;
}

.social-links a.instagram,
a[href*="instagram.com"] {
    background-color: var(--instagram-color) !important;
}

.social-links a.linkedin,
a[href*="linkedin.com"] {
    background-color: var(--linkedin-color) !important;
}

.social-links a.youtube,
a[href*="youtube.com"] {
    background-color: var(--youtube-color) !important;
}

.social-links a.whatsapp,
a[href*="whatsapp.com"],
a[href*="wa.me"] {
    background-color: var(--whatsapp-color) !important;
}

/* Estilos comuns para todos os ícones de redes sociais */
.social-links a i {
    color: var(--white) !important;
    font-size: 1.2rem;
}

/* Efeito hover para ícones */
.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos específicos para botões de compartilhamento */
.social-share .social-links a {
    width: auto;
    padding: 8px 20px;
    border-radius: 50px;
    min-width: 130px;
}

.social-share .social-links a i {
    margin-right: 8px;
} 