/* trintaDias.css */
.trinta-dias {
    padding: 100px 0 60px;
    background-color: #f8fafc; /* Subtle light background to separate sections */
    font-family: "Inter", sans-serif;
    overflow: hidden;
    position: relative;
}

.trinta-dias .container {
    margin: 0 auto;
    padding: 0 20px;
}

.trinta-dias-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
    padding: 50px;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.trinta-dias-image {
    flex: 1;
    position: relative;
}

.trinta-dias-image .image-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trinta-dias-image .image-box:hover {
    transform: scale(1.02);
}

.trinta-dias-image .image-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.trinta-dias-info {
    flex: 1.2;
}

.badge-trial {
    background: rgba(0, 209, 178, 0.1);
    color: #00b89c;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.trinta-dias-info h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #122841;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.trinta-dias-info .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.trial-features .feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.trial-features .feature-item i {
    font-size: 1.15rem;
    color: #00d1b2;
    margin-top: 2px;
}

.trial-features .feature-item span {
    font-weight: 500;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-trial-cta {
    background: linear-gradient(135deg, #00d1b2, #00f2fe);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 209, 178, 0.2);
}

.btn-trial-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 209, 178, 0.4);
    filter: brightness(1.05);
}

.btn-trial-cta i {
    transition: transform 0.3s ease;
}

.btn-trial-cta:hover i {
    transform: translateX(4px);
}

.cta-subtext {
    font-size: 0.85rem;
    color: #94a3b8;
}

.squiggle-separator {
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 20" preserveAspectRatio="none"><path d="M0,10 C150,20 350,0 500,10 C650,20 850,0 1000,10 C1150,20 1200,10 1200,10 L1200,20 L0,20 Z" fill="%23f1c40f"/></svg>');
    background-size: cover;
    margin-top: 60px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .trinta-dias-wrapper {
        flex-direction: column;
        padding: 35px;
        gap: 40px;
    }

    .trinta-dias-image,
    .trinta-dias-info {
        width: 100%;
    }

    .trinta-dias-info h2 {
        font-size: 1.85rem;
    }

    .cta-wrapper {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .btn-trial-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .trinta-dias {
        padding: 60px 0 40px;
    }
    
    .trinta-dias-wrapper {
        padding: 25px 20px;
    }
}
