/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
}

.logo-text p {
    font-size: 0.875rem;
    color: #64748b;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-btn:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.nav-btn.active {
    background: #2563eb;
    color: white;
}

.nav-btn.btn-green {
    background: #16a34a;
    color: white;
}

.nav-btn.btn-green:hover {
    background: #15803d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 40;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.nav-btn-mobile {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.nav-btn-mobile:hover {
    background: #f1f5f9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    color: white;
}

.breadcrumb.blue {
    background: #2563eb;
}

.breadcrumb.green {
    background: #16a34a;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.page-hero.blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.page-hero.green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.page-hero-content {
    max-width: 3xl;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-success {
    background: #16a34a;
    color: white;
}

.btn-success:hover {
    background: #15803d;
}

.btn-white {
    background: white;
    color: #1e40af;
}

.btn-regcli {
    margin-top: 15px;
}

.btn-white:hover {
    background: #dbeafe;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #1e40af;
}

.btn-outline-green {
    background: transparent;
    color: #16a34a;
    border: 1px solid #16a34a;
}

.btn-outline-green:hover {
    background: #dcfce7;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 3xl;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #bfdbfe;
    background: #eff6ff;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.service-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.service-icon.purple {
    background: #e9d5ff;
    color: #9333ea;
}

.service-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.service-icon.red {
    background: #fecaca;
    color: #dc2626;
}

.service-icon.blue-dark {
    background: #2563eb;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card.featured h3 {
    color: #1e40af;
}

.service-card ul {
    list-style: none;
    color: #64748b;
}

.service-card.featured ul {
    color: #475569;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-secondary {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #16a34a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

/* Reports Section */
.reports {
    padding: 5rem 0;
    background: #f1f5f9;
}

.tabs {
    margin-bottom: 2rem;
}

.tabs-list {
    display: flex;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.25rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.tab-trigger {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s;
}

.tab-trigger.active {
    background: white;
    color: #1e293b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.report-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 4xl;
    margin: 0 auto;
    overflow: hidden;
}

.report-header {
    background: #2563eb;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-title h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.report-title p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

.report-content {
    padding: 2rem;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.report-section {
    margin-bottom: 2rem;
}

.report-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.report-data {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.table-container {
    overflow-x: auto;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.report-table th {
    background: #f8fafc;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.report-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.status-good {
    background: #dcfce7;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #166534;
}

.status-info {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #1e40af;
}

.status-warning {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #92400e;
}

.financial-entities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.entity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.reports-cta {
    text-align: center;
    margin-top: 2rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    max-width: 4xl;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #64748b;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content h4 {
    font-weight: 600;
    color: #1e293b;
}

.stat-content p {
    font-size: 0.875rem;
    color: #64748b;
}

.values-section {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 0.75rem;
}

.values-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.value-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.value-item p {
    font-size: 0.875rem;
    color: #64748b;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 3xl;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
    background: #1e293b;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px; /* Reducido de 4xl */
    margin: 0 auto;
    justify-content: center;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.contact-icon.blue {
    background: #2563eb;
}

.contact-icon.green {
    background: #16a34a;
}

.contact-icon.purple {
    background: #9333ea;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.contact-item span {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* Form Pages */
.form-page {
    padding: 5rem 0;
    background: white;
}

.form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 4xl;
    margin: 0 auto;
}

.form-layout.wide {
    grid-template-columns: 3fr 1fr;
    max-width: 5xl;
}

.form-main.wide {
    max-width: none;
}

.form-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    padding: 2rem;
    color: white;
}

.form-header.blue {
    background: #2563eb;
}

.form-header.green {
    background: #16a34a;
}

.form-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.form-content {
    padding: 2rem;
}

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

.form-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.form-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefits-highlight {
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefits-highlight h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.75rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefit-item i {
    color: #16a34a;
    margin-top: 0.125rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: #166534;
}

.info-box {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-box.blue {
    background: #eff6ff;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-content i {
    color: #2563eb;
    margin-top: 0.125rem;
}

.info-content p {
    font-size: 0.875rem;
    color: #1e40af;
}

.info-content p strong {
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.form-footer p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.sidebar-card.green {
    background: #dcfce7;
    border-color: #bbf7d0;
}

.sidebar-card.cta-card {
    background: #2563eb;
    color: white;
    text-align: center;
}

.sidebar-card.stats-card {
    background: #16a34a;
    color: white;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.sidebar-card.green h3 {
    color: #166534;
}

.sidebar-card.cta-card h3,
.sidebar-card.stats-card h3 {
    color: white;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon-small {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-small.blue {
    background: #dbeafe;
    color: #2563eb;
}

.contact-icon-small.green {
    background: #dcfce7;
    color: #16a34a;
}

.contact-item-small p {
    font-weight: 500;
    color: #1f2937;
}

.contact-item-small span {
    font-size: 0.875rem;
    color: #64748b;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon-small {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-number {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

.stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.process-number {
    width: 1.5rem;
    height: 1.5rem;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-item p {
    font-weight: 500;
    color: #1f2937;
}

.process-item span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
}

.footer-logo h3 {
    font-weight: bold;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-section p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section li {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-layout.wide {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .services,
    .reports,
    .about,
    .cta,
    .form-page {
        padding: 3rem 0;
    }
    
    .contact-info {
        padding: 3rem 0;
    }
    
    .form-content {
        padding: 1rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
}
/* MENÚ MÓVIL UNIFICADO Y BONITO */
.mobile-menu {
    display: none;
    position: fixed !important;
    top: 70px !important; /* Ajustá según la altura de tu header */
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: white !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    padding: 1.5rem 0 1.5rem 0 !important;
}

.mobile-menu.active {
    display: block !important;
}

.nav-btn-mobile {
    display: block;
    width: 90%;
    margin: 0.5rem auto;
    padding: 0.85rem 1rem;
    background: #f1f5f9;
    color: #1e293b;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    text-align: left;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(30,41,59,0.04);
}

.nav-btn-mobile:hover, .nav-btn-mobile:focus {
    background: #2563eb;
    color: #fff;
}

.nav-btn-mobile.btn-green {
    background: #16a34a;
    color: #fff;
}

.nav-btn-mobile.btn-green:hover, .nav-btn-mobile.btn-green:focus {
    background: #15803d;
    color: #fff;
}
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
#whatsapp-float img {
  width: 38px;
  height: 38px;
  display: block;
}

#whatsapp-float:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.30);
  transform: scale(1.08);
  background: #1ebe57;
}

/* Popup ajustado */
.whatsapp-popup {
  position: fixed;
  bottom: 105px;   /* debe ser igual a #whatsapp-float height + margen */
  right: 24px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  padding: 1.1em 1.3em 1.1em 1.2em;
  min-width: 250px;
  max-width: 350px;
  font-size: 1.08em;
  line-height: 1.45;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.38s cubic-bezier(.4,0,.2,1), transform 0.38s cubic-bezier(.4,0,.2,1);
  border-left: 5px solid #25d366;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* TRIANGULITO bien alineado */
.whatsapp-popup-arrow {
  position: absolute;
  right: 22px;      /* MUY IMPORTANTE: pega el triangulito a la derecha */
  bottom: -18px;    /* igual que antes */
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 0 solid transparent;  /* ya no centrado */
  border-top: 18px solid #fff;
  filter: drop-shadow(0 2px 3px rgba(34,34,34,0.07));
  z-index: 2;
  pointer-events: none;
}

/* CLOSE BUTTON */
.wpopup-close {
  color: #25d366;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 8px; right: 10px;
  line-height: 1;
  background: none;
  border: none;
  opacity: .6;
  transition: opacity 0.2s;
}
.wpopup-close:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  #whatsapp-float {
    right: 12px;
    bottom: 18px;
  }
  .whatsapp-popup {
    right: 6px;
    left: 6px;
    min-width: unset;
    max-width: 96vw;
    padding: 1em 1em 1em 1em;
  }
  .whatsapp-popup-arrow {
    right: 36px;
    left: unset;
    bottom: -17px;
  }
}
.whatsapp-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
