/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #020617;
    color: #f1f5f9;
    min-height: 100vh;
    line-height: 1.6;
}

::selection {
    background-color: rgba(59, 130, 246, 0.3);
    color: #bfdbfe;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.logo-white {
    color: white;
}

.logo-blue {
    color: #3b82f6;
}

.logo-separator {
    margin: 0 0.5rem;
    color: white;
    font-weight: 300;
    opacity: 0.6;
}

.btn-cta-header {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-header:hover {
    background-color: #3b82f6;
}

.btn-cta-header:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    background-color: #020617;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
}

.hero-blur-1 {
    top: 0;
    right: 0;
    transform: translate(25%, -50%);
    width: 800px;
    height: 800px;
    background-color: rgba(59, 130, 246, 0.1);
}

.hero-blur-2 {
    bottom: 0;
    left: 0;
    transform: translate(-25%, 25%);
    width: 600px;
    height: 600px;
    background-color: rgba(30, 58, 138, 0.2);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.025em;
}

.hero-gradient {
    background: linear-gradient(to right, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #2563eb;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #3b82f6;
    transform: translateY(-0.25rem);
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(0.5rem);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-blur {
    position: absolute;
    inset: -1rem;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 4rem;
    filter: blur(3rem);
    transition: all 1s;
}

.hero-image-wrapper:hover .hero-image-blur {
    background-color: rgba(59, 130, 246, 0.3);
}

.hero-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.8), transparent, transparent);
}

.hero-metric-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.hero-image-wrapper:hover .hero-metric-card {
    transform: translateY(0);
    opacity: 1;
}

.metric-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    text-align: left;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
}

.metric-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 1.5rem;
    background-color: #020617;
    position: relative;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.benefit-icon {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    display: inline-block;
    color: #3b82f6;
    transition: all 0.3s;
}

.benefit-icon i {
    width: 3rem;
    height: 3rem;
}

.benefit-card:hover .benefit-icon {
    background-color: #2563eb;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.benefit-desc {
    color: #94a3b8;
    line-height: 1.75;
    font-weight: 300;
    text-align: left;
}

/* Differentiation Section */
.differentiation-section {
    padding: 8rem 1.5rem;
    background-color: #010409;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.differentiation-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    gap: 5rem;
    align-items: center;
}

.differentiation-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.625rem;
    margin-bottom: 1.5rem;
}

.badge-icon-sm {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1.25;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.title-highlight {
    color: #3b82f6;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: #94a3b8;
    font-weight: 300;
    line-height: 1.75;
}

.text-highlight {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-underline-offset: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 2rem;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.stat-title {
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.625rem;
    color: #94a3b8;
}

/* Certificates */
.certificates-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificates-container {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.certificate {
    position: absolute;
    width: 100%;
    aspect-ratio: 1.41 / 1;
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
    transition: all 0.5s;
    overflow: hidden;
}

.certificate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.certificate-label {
    position: absolute;
    font-size: 0.5rem;
    font-weight: 900;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.certificate-mba {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.certificate-label-mba {
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(37, 99, 235, 0.9);
}

.certificate-meta {
    top: 5rem;
    left: -30px;
    transform: rotate(-12deg);
    z-index: 20;
}

.certificate-label-meta {
    top: 1rem;
    left: 1rem;
    background-color: #2563eb;
}

.certificate-google {
    top: 7rem;
    left: 30px;
    transform: rotate(6deg);
    z-index: 30;
}

.certificate-label-google {
    top: 1rem;
    right: 1rem;
    background-color: #3b82f6;
}

.certificate:hover {
    transform: scale(1.1) !important;
    z-index: 40 !important;
}

.certificate-mba:hover {
    transform: translateX(-50%) translateY(-3rem) scale(1.1) !important;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 1.5rem;
    background-color: #020617;
}

.testimonials-header {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 6rem;
}

.testimonials-subtitle {
    color: #3b82f6;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.625rem;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    text-align: left;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
    fill: #60a5fa;
}

.testimonial-quote {
    color: #e2e8f0;
    font-size: 1.125rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 2rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: transform 0.3s;
}

.testimonial-card:hover .author-avatar {
    transform: rotate(0deg);
}

.author-avatar-blue {
    background-color: #2563eb;
}

.author-avatar-light {
    background-color: #60a5fa;
}

.author-avatar-slate {
    background-color: #475569;
}

.author-name {
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
}

.author-company {
    color: #60a5fa;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Form Section */
.form-section {
    padding: 8rem 1.5rem;
    position: relative;
    background: linear-gradient(to bottom, #020617, #010409);
}

.form-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.form-grid {
    display: grid;
    border-radius: 4rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-left {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    padding: 2.5rem 3.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.form-subtitle {
    color: #bfdbfe;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.75;
}

.form-highlight {
    color: #fbbf24;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    letter-spacing: 0.05em;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
}

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #bfdbfe;
}

.benefit-text {
    font-weight: 700;
    font-size: 1rem;
}

.form-right {
    background-color: #0f172a;
    padding: 2.5rem 3.5rem;
    text-align: left;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form-input {
    width: 100%;
    background-color: #020617;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    ring: 2px solid #3b82f6;
    border-color: #3b82f6;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-submit {
    width: 100%;
    background-color: white;
    color: #020617;
    font-weight: 900;
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background-color: #eff6ff;
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 2.5rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    color: #3b82f6;
    margin: 0 auto 2rem;
}

.success-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.reset-btn {
    color: #60a5fa;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #010409;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 6rem 1.5rem 3rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.social-link:hover {
    background-color: #2563eb;
    color: white;
}

.social-link i {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-copyright {
    color: #334155;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 2rem;
}

.admin-link {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.admin-link:hover {
    color: #3b82f6;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    text-align: left;
}

.modal-content {
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 2rem;
    max-width: 24rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-input {
    width: 100%;
    background-color: #020617;
    border: 1px solid rgba(30, 58, 138, 0.5);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: white;
    outline: none;
}

.admin-input:focus {
    ring: 2px solid #3b82f6;
}

.admin-buttons {
    display: flex;
    gap: 0.75rem;
}

.admin-submit {
    flex: 1;
    background-color: #2563eb;
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-submit:hover {
    background-color: #3b82f6;
}

.admin-close {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(30, 58, 138, 0.5);
    color: #94a3b8;
    border-radius: 0.75rem;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-close:hover {
    background-color: #1e293b;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: #020617;
    overflow-y: auto;
    padding: 1.5rem 3rem;
    text-align: left;
    color: white;
}

.admin-container {
    max-width: 96rem;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.admin-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.admin-highlight {
    color: #3b82f6;
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.admin-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn-secondary {
    background-color: #1e293b;
    color: white;
}

.admin-btn-secondary:hover {
    background-color: #334155;
}

.admin-btn-danger {
    background-color: #dc2626;
    color: white;
}

.admin-btn-danger:hover {
    background-color: #ef4444;
}

.leads-list {
    display: grid;
    gap: 1rem;
}

.lead-item {
    background-color: #0f172a;
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.lead-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.lead-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex: 1;
    width: 100%;
    text-align: left;
}

.lead-field-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.lead-field-value {
    color: white;
    font-weight: 700;
}

.lead-field-link {
    color: #34d399;
    font-weight: 700;
    text-decoration: underline;
}

.lead-field-investment {
    color: #60a5fa;
    font-weight: 900;
    text-transform: uppercase;
}

.lead-delete-btn {
    padding: 1rem;
    background-color: rgba(220, 38, 38, 0.1);
    color: #ef4444;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.lead-delete-btn:hover {
    background-color: #dc2626;
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 50;
    background-color: #2563eb;
    color: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    overflow: hidden;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    width: 2rem;
    height: 2rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .logo-separator {
        margin: 0 1rem;
    }

    .btn-cta-header {
        display: flex;
    }

    .hero-section {
        padding: 12rem 1.5rem 10rem;
    }

    .hero-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-left: 0;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .benefits-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .differentiation-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-wrapper {
        height: 600px;
        justify-content: flex-end;
    }

    .certificates-container {
        max-width: 450px;
    }

    .certificate-meta {
        left: -60px;
    }

    .certificate-google {
        left: 60px;
    }

    .section-title {
        font-size: 3.75rem;
    }

    .testimonials-title {
        font-size: 3.75rem;
    }

    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-grid {
        grid-template-columns: 2fr 3fr;
    }

    .form-left {
        padding: 3.5rem;
    }

    .form-right {
        padding: 3.5rem;
    }

    .form-title {
        font-size: 1.875rem;
    }

    .admin-header {
        flex-direction: row;
    }

    .lead-item {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
