* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-stats {
    display: flex;
    gap: 30px;
}

.header-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header-phone {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-cta {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.4);
}

.logo {
    height: 160px;
    width: 160px;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: transparent;
}

.logo:hover {
    transform: scale(1.05);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone-info {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits-quick {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.benefit-item .check {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    width: 100%;
    margin-top: 15px;
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
}

.urgency {
    color: #FFD700;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.form-privacy {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Social Proof */
.social-proof {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.social-proof h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: white;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: #FF6B6B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-item p {
    color: #666;
    font-size: 1rem;
}

.problem-cta {
    text-align: center;
    margin-top: 40px;
}

.problem-cta p {
    font-size: 1.2rem;
    color: #667eea;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 1rem;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.expertise-intro {
    text-align: center;
    margin-bottom: 50px;
}

.expertise-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.sector-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B6B;
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.sector-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1rem;
}

.difficulty {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.sector-card .difficulty:contains("Alta Competencia") {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
}

.sector-card .difficulty:contains("Media") {
    background: linear-gradient(45deg, #FFA726, #FFB74D);
}

.sector-card .difficulty:contains("Estrategias Alternativas") {
    background: linear-gradient(45deg, #42A5F5, #66BB6A);
}

.exclusivity-guarantee {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-left: 6px solid #4CAF50;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Adaptable Methodology Section */
.adaptable-methodology {
    padding: 80px 0;
    background: #f8f9fa;
}

.adaptable-methodology h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.methodology-content {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-intro {
    text-align: center;
    margin-bottom: 50px;
}

.methodology-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.client-type {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.client-type:nth-child(1) {
    border-top-color: #4CAF50;
}

.client-type:nth-child(2) {
    border-top-color: #FF9800;
}

.client-type:nth-child(3) {
    border-top-color: #2196F3;
}

.client-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.client-type h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.client-type p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.client-type p strong {
    color: #333;
    font-weight: 700;
}

.methodology-guarantee {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.methodology-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.guarantee-content {
    position: relative;
    z-index: 2;
}

.guarantee-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 600px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.final-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.urgency-text {
    color: #FF6B6B;
    font-weight: 600;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

/* Conversion Optimization Section */
.conversion-optimization {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.conversion-optimization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.conversion-optimization .container {
    position: relative;
    z-index: 2;
}

.conversion-optimization h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.optimization-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.optimization-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rafa-introduction {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.rafa-photo {
    width: 140px;
    height: 210px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rafa-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.rafa-title {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

.rafa-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    font-style: italic;
}

.optimization-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.optimization-text > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.optimization-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.opt-service {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.opt-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.opt-service h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.opt-service p {
    font-size: 1rem;
    opacity: 0.9;
}

.optimization-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opt-stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.opt-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

.opt-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    z-index: 9999;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    animation: pulse-floating 3s infinite;
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

@keyframes pulse-floating {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-cta-icon {
    font-size: 1.2rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 8px;
    animation: pulse-whatsapp 2s infinite;
    font-size: 0.9rem;
    border: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.1rem;
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #ffffff;
    color: #4CAF50;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.alternative-contact {
    margin-bottom: 40px;
}

.alternative-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn, .email-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover, .email-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.rafa-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rafa-photo-thanks {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.rafa-message h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.rafa-message p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    font-style: italic;
}

.back-home {
    margin-top: 30px;
}

.back-btn {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rafa-section {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.footer-contact h4 {
    margin-bottom: 15px;
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .header-right {
        display: none;
    }
    
    .logo {
        height: 120px;
        width: 120px;
        max-width: 120px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-phone-info {
        font-size: 0.8rem;
    }
    
    .header-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .exclusivity-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .optimization-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .optimization-visual {
        order: -1;
    }
    
    .rafa-introduction {
        padding: 25px 20px;
    }
    
    .rafa-photo {
        width: 120px;
        height: 180px;
    }
    
    .floating-whatsapp {
        display: flex !important;
        max-width: 90vw !important;
        word-wrap: break-word;
    }
    
    .floating-cta {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2) !important;
        position: fixed !important;
        max-width: 100vw !important;
    }
    
    .floating-cta-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 0;
        justify-content: center;
        gap: 15px;
    }
    
    .floating-cta-text {
        display: inline !important;
    }
    
    .floating-cta-icon {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .problem h2,
    .solution h2,
    .services h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .hero-form,
    .final-form {
        padding: 25px 20px;
    }
}