* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ebeff2;
    color: #333;
    line-height: 1.6;
    padding-top: 80px; /* Espaço para header fixo */
}

a{
    text-decoration: none;
}

.container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 125, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    color: #007DFF;
    font-weight: 700;
    font-size: 1.8rem;
    width: 110px;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007DFF;
}

.btn-header {
  background: linear-gradient(135deg, #007DFF, #00a8e6);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 125, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #afafaf;
}

.video-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 180, 216, 1) 0%, rgb(29, 40, 234) 30%,  rgba(3, 4, 94, 1) 70%, rgb(48, 24, 91) 100%);
    background-size: 5000%;
    animation: colors 18s ease infinite;
    opacity: 0.8;
}

.back-img{
    position:absolute;
    width:100%;
    opacity:0.5;
}

@keyframes colors {
    0% { background-position: 0% 50%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-left: 60px;
    max-width: 100%;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFF;
    line-height: normal;
    margin-bottom: 2rem;
}

.title span{
    opacity: 0;
    animation: titleAnimation 2s ease forwards;
}

.title span:nth-of-type(1) { animation-delay: 0.2s; }
.title span:nth-of-type(2) { animation-delay: 0.5s; }
.title span:nth-of-type(3) { animation-delay: 0.5s; }
.title span:nth-of-type(4) { animation-delay: 1s; }
.title span:nth-of-type(5) { animation-delay: 1.4s; }


.highlight {
    color: #ffc022  !important;
}

@keyframes titleAnimation {
    0% {
        transform: translateY(-50px);
        opacity: 0;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    }
    50% {
        transform: translateY(0);
        opacity: 1;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
        clip-path: polygon(100% 0, 100% 150%, 0 100%, 0 0%);
    }
}

/* Pricing Section */
.pricing-section {
    padding-bottom: 80px;
    margin-top: -60px;
    background-color: #ebeff2;
}
#planos {
    scroll-margin-top: 100px; /* Compensa a altura do header fixo */
}

.pricing-grid-single-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    flex: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/*
.main-plan {
    border: 3px solid #007DFF;
    position: relative;
}

.main-plan::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: -1px;
    right: 15px;
    background: #007DFF;
    color: white;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
}*/

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-badge {
    background: linear-gradient(135deg, #007DFF, #00a8e6);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 12px;
    display: inline-block;
}

.plan-badge i {
    color: #ffd402 !important;
    font-size: 16px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #007DFF;
    margin-bottom: 8px;
}

.price .month {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.plan-subtitle {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
}

.features-list-compact {
    list-style: none;
}

.features-list-compact .feature {
    padding: 4px 0;
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list-compact .feature i {
    color: #007DFF;
    width: 14px;
    font-size: 11px;
}

.progressive-table-compact {
    margin-top: 15px;
}

.progressive-table-compact table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.progressive-table-compact th,
.progressive-table-compact td {
    padding: 6px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 11px;
}

.progressive-table-compact th {
    background: #f8f9fa;
    font-weight: 600;
    color: #007DFF;
}

.progressive-table-compact td strong {
    color: #007DFF;
}

.table-features-compact {
    margin-top: 10px;
}

.table-features-compact .feature {
    padding: 4px 0;
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-features-compact .feature i {
    color: #007DFF;
    width: 14px;
    font-size: 11px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    background: linear-gradient(135deg, #009cff, #0063fc);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(31, 144, 255, 0.2);
    margin-top: 8px;
    text-decoration: none;
}

.cta-button:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 144, 255, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

@keyframes swing {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-5deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    60% { transform: rotate(-1deg); }
    70% { transform: rotate(1deg); }
    80% { transform: rotate(-1deg); }
    90% { transform: rotate(1deg); }
    100% { transform: rotate(0deg); }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #007DFF;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-module {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-module h3 {
    color: #007DFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-module ul {
    list-style: none;
    text-align: left;
}

.feature-module li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.feature-module li strong {
    color: #007DFF;
}

/* Finpet Section */
.finpet-section {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.finpet-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.finpet-text-content h2 {
    font-size: 2.5rem;
    color: #007DFF;
    margin-bottom: 20px;
    font-weight: 700;
}

.finpet-text-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.finpet-banner-full {
    width: 100%;
    margin-top: 40px;
}

.finpet-banner-full img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffc022;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc022;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #ffc022;
    width: 16px;
}
.contact-info a{
    color: inherit;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #007DFF;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffc022;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

.columf{
    float:left;
    padding:12px 15px 12px 15px;
    border-radius:4px;
    margin:5px 5px;
}
.colorPink{
    background-color:#007ee2;
    color:#FFF;
}
.colorBlue{
    background-color:#343965;
    color:#FFF;
}

.col-6{
    width: 50%;
    float: left;
    padding: 0 20px;
}

.mt-2{
    margin-top:20px !important;
}

/* Botão Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação do hamburger quando ativo */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Mobile */
.nav-mobile {
    position: absolute;
    top: 100%;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    /* visibility: hidden; */
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 20px;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.nav-mobile ul li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 125, 255, 0.1);
}

.nav-mobile ul li:last-child {
    border-bottom: none;
}

.nav-mobile ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-mobile ul li a:hover {
    color: #007DFF;
    padding-left: 10px;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    border-top: 1px solid rgba(0, 125, 255, 0.1);
    padding-top: 15px;
}

.mobile-cta .acess {
    color: #007DFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 0;
}

.mobile-cta .btn-header {
    background: linear-gradient(135deg, #007DFF, #00a8e6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-cta .btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 125, 255, 0.3);
}

.fa-brands{
    font-size:1.2rem;
}

.whatsapp-button{
    position:fixed;
    bottom:2vh;
    right:1vw;
    z-index:2;
    padding:15px;
    background-color:green;
    color:#FFF;
    border-radius:50px;
    width:60px;
    height:60px;
    padding: 17px 20px;
}
.whatsapp-button i{
    font-size: 24px;
}

#dynamic-text{
    display: inline-block;
    min-width: 200px;
}
.break-title{
    display: none;
}

.nav-mobile{
    display:none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .title{
        line-height:1;
        font-size: 2.8rem;
    }
    .hero{
        height: 70vh;
    }
    .container {
        max-width: 100vw !important;
    }

    .back-img{
        opacity: 0.8;
    }
}
@media (max-width: 1024px) {
    /* .pricing-grid-single-row {
        flex-wrap: wrap;
    } */

    .pricing-card {
        min-width: 280px;
    }

    .title{
        font-size: 2.5rem;
        line-height: 1;
    }

    

}
@media (max-width: 900px){
    .nav-menu {
        display: none;
    }
    .header-cta{
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header-content {
        padding: 10px 0;
    }
    .navbar{
        margin-bottom: 10px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        height: 32vh;
        flex-direction: column;
    }

    .video-background {
        width: 100%;
        height: 50%;
        top: 0;
    }

    .hero-content {
        position: relative; /* Ou 'static'. Tira o elemento do posicionamento absoluto. */
        padding: 20px;
        padding-top: 32px;
        max-width: 100%;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .title {
        font-size: 1.8rem;
        line-height: 1;

    }

    .pricing-grid-single-row {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-card {
        min-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-section {
        margin-top: 0px;
    }
    .break-title{
        display: block;  
    }

    
}
@media (max-width: 550px) {
    .title {
        font-size: 1.5rem;
        line-height: 1;
    }
    .break-title{
        display: block;  
    }

    
}
@media (max-width: 480px) {
    .title {
        font-size: 1.3rem;
        line-height: 1;
        text-align: center;
    }
    .title button {
        display: inline-block;
    }
    .hero {
        height: 24vh;
        flex-direction: column;
    }

    

    .pricing-card {
        padding: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .finpet-text-content h2 {
        font-size: 2rem;
    }

    .features-section h2 {
        font-size: 2rem;
    }
    .break-title{
        display: block;  
    }
}

.acess{
    margin-right:25px;
    color:#555;
    text-decoration: none;
}
.acess:hover{
    color:#007DFF;
}

.link{
    margin-right:25px;
    color:#007DFF;
    text-decoration: none;
}
.link:hover{
    color:#343965;
}
.features-list-compact p{
    font-size: 12px;
    color:#555;
    margin:5px 0;
}