:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f1c40f;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --gradient-start: #2c3e50;
    --gradient-end: #34495e;
    --whatsapp-color: #25D366;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Navbar Contact Button */
.navbar .btn-contact {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.navbar .btn-contact i {
    font-size: 18px;
}

.navbar .btn-contact:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.navbar .btn-contact:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .navbar .btn-contact {
        margin: 10px 0;
        width: 100%;
        justify-content: center;
    }
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../img/hero-banner.jpg') no-repeat center right;
    background-size: cover;
    opacity: 0.15;
    animation: fadeInRight 1s ease-out;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 1s ease-out;
}

.hero-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInLeft 1.2s ease-out;
}

.hero-banner .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    animation: fadeInLeft 1.4s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 0.15;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 100px 0 60px;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
    }

    .hero-banner::before {
        width: 100%;
        opacity: 0.1;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 80px 0 40px;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

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

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

.card.border-primary {
    border: 2px solid var(--secondary-color) !important;
}

/* Icons */
.fa-3x {
    color: var(--secondary-color);
}

/* Integration Section */
.integration-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color), #fff);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.integration-card:hover .integration-icon i {
    color: white;
}

.integration-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.integration-card p {
    color: var(--metal-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.integration-icon i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Pricing Cards */
#planos .card {
    border-radius: 10px;
}

#planos .display-4 {
    color: var(--secondary-color);
}

/* Blog Section */
#blog .card-img-top {
    height: 200px;
    object-fit: cover;
}

#blog .btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

#blog .btn-link:hover {
    color: #c0392b;
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    transition: all 0.3s ease;
}

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

footer .fa-2x {
    transition: transform 0.3s ease;
}

footer .fa-2x:hover {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        text-align: center;
    }
    
    .hero-banner img {
        margin-top: 2rem;
    }
    
    #integracoes img {
        max-height: 40px;
    }
}

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

.card, .hero-banner h1, .hero-banner p {
    animation: fadeIn 1s ease-out;
}

/* Remove old integration styles */
#integracoes img {
    display: none;
}

/* Presentation Section */
.section-header {
    position: relative;
    padding-bottom: 1rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
     background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color), #fff);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--metal-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 3rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-box .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-box .btn-outline-primary:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .cta-box .btn {
        width: 100%;
    }
}

/* Plans Section */
.plan-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-header h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-description {
    color: var(--metal-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.plan-features li:hover {
    transform: translateX(5px);
}

.plan-features li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.feature-plus {
    color: var(--secondary-color) !important;
    font-weight: 500;
}

.feature-plus i {
    color: var(--accent-color) !important;
}

.plan-footer {
    text-align: center;
}

.plan-footer .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .plan-features {
        margin-bottom: 1.5rem;
    }
}

/* Benefits Section */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color), #fff);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.benefit-list li:hover {
    transform: translateX(5px);
}

.benefit-list li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.benefit-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 3rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.benefit-cta > * {
    position: relative;
    z-index: 2;
}

.benefit-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefit-cta .btn-outline-primary {
    border-color: white;
    color: white;
}

.benefit-cta .btn-outline-primary:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-cta {
        padding: 2rem;
    }
    
    .benefit-cta .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .benefit-cta .btn {
        width: 100%;
    }
}

/* FAQ Section */
#faq {
    background-color: #f8f9fa;
}

#faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#faq .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#faq .accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    background-color: #fff;
    border: none;
    border-radius: 10px !important;
}

#faq .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #fff;
    box-shadow: none;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.15);
}

#faq .accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

#faq .accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: #6c757d;
}

#faq .accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

#faq .accordion-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

#faq .accordion-body ul li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    left: 0;
}

#faq .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#faq .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
    #faq .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    #faq .accordion-body {
        padding: 1.2rem;
    }
    
    #faq .accordion-body ul li {
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Integrations Page Styles */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 120px 0 60px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.integration-benefit {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.integration-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.integration-benefit i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.integration-benefit:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Integration Cards */
.integration-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.integration-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.integration-card:hover .integration-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.integration-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.integration-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.integration-features li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Process Steps */
.process-step {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.process-step:hover .process-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

/* CTA Section */
.bg-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .integration-card,
    .process-step {
        margin-bottom: 1.5rem;
    }
}

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

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

/* Social Links */
.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Plan Cards */
.plan-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.plan-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: var(--light-bg);
}

.plan-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    color: var(--primary-color);
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    color: #666;
    font-size: 1rem;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.plan-footer {
    padding: 2rem;
    text-align: center;
    background: var(--light-bg);
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card.featured {
    background: var(--light-bg);
    margin-bottom: 2rem;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card.featured img {
    height: 100%;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-card.featured .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    height: 3.5rem;
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid #ddd;
}

.newsletter-form .btn {
    height: 3.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0 2rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #ddd;
    margin: 0 0.25rem;
    border-radius: 0.25rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

footer a {
    transition: all 0.3s ease;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .plan-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-card.featured img {
        height: 200px;
    }
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-button i {
    font-size: 32px;
    color: #fff;
}

.whatsapp-float .whatsapp-text {
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.whatsapp-float:hover .whatsapp-button {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float .whatsapp-button i {
        font-size: 28px;
    }

    .whatsapp-float .whatsapp-text {
        display: none;
    }
} 