.elementor-1949 .elementor-element.elementor-element-58beaa0{transition:all 400ms;}.elementor-1949 .elementor-element.elementor-element-a30b3d0 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-1949 .elementor-element.elementor-element-a30b3d0{transition:all 400ms;}.elementor-1949 .elementor-element.elementor-element-999ec73{width:100%;max-width:100%;transition:all 400ms;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-999ec73 *//* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ccc;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 102, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #FF0066;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FF0066;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF0066;
}

.contact-btn {
    background: linear-gradient(45deg, #FF0066, #CC0052);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.3);
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #FF0066;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    text-align: center;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    color: #FF0066;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #FF4081;
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    background: linear-gradient(45deg, #FF0066, #CC0052);
    color: white !important;
    font-size: 1.2rem;
}

.desktop-only {
    display: inline-block;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: #000000;
}

.hero h1 {
    font-size: 3.5rem;
    color: #FF0066;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF0066, #CC0052);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #FF0066;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services {
    padding: 80px 0;
    background: #000000;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF0066;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF0066, #CC0052);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF0066;
}

.service-card p {
    color: #FF0066;
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    position: relative;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.header-content {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E91E63, #FF4081, #E91E63);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(233, 30, 99, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(233, 30, 99, 0.2);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.popular {
    border-color: #E91E63;
    transform: scale(1.05);
    background: rgba(30, 20, 25, 0.9);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(233, 30, 99, 0.15);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(233, 30, 99, 0.25);
}

.popular-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #E91E63, #FF4081);
    color: white;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 22px 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.plan-header {
    margin-bottom: 35px;
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E91E63;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #E91E63;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.plan-price .period {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

.plan-price.custom .currency {
    font-size: 2.5rem;
}

.plan-price.custom .period {
    font-size: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-features li {
    padding: 15px 0;
    position: relative;
    padding-left: 40px;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E91E63;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.plan-card:hover .plan-features li {
    color: #ffffff;
}

.plan-btn {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #E91E63, #FF4081);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.plan-btn:hover::before {
    left: 100%;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #C2185B, #E91E63);
}

.plan-btn:active {
    transform: translateY(-1px);
}

.plan-btn.outline {
    background: transparent;
    border: 2px solid #E91E63;
    color: #E91E63;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.plan-btn.outline:hover {
    background: linear-gradient(135deg, #E91E63, #FF4081);
    color: white;
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .plans-grid {
        max-width: 100%;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .plans-section {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .plan-card {
        padding: 35px 25px;
        min-height: auto;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
    
    .header-content {
        margin-bottom: 50px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .plan-title {
        font-size: 1.8rem;
    }
    
    .plans-grid {
        gap: 20px;
    }

    .services h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .plan-card {
        padding: 25px 15px;
    }
    
    .plan-price .amount {
        font-size: 2.2rem;
    }
    
    .main-title {
        font-size: 2rem !important;
    }
}

/* Estilos adicionais para links */
a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
}

/* Estilos para featured-services (se aplicável) */
.featured-services .plan-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.featured-services .service-icon {
    margin-bottom: 1rem !important;
}

.featured-services h3 {
    margin-bottom: 0.75rem !important;
    line-height: 1.3;
}

.featured-services p {
    margin-bottom: 1rem !important;
    line-height: 1.5;
}

.featured-services ul {
    margin-bottom: 1.5rem !important;
    padding-left: 0;
}

.featured-services li {
    margin-bottom: 0.5rem !important;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.4;
}

.featured-services li span {
    left: 0.25rem !important;
}/* End custom CSS */