/* Estilos específicos de la página SellWise */

/* Hero Section */
.sellwise-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/sellwise/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sellwise-hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sellwise-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sellwise-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive */
@media (max-width: 768px) {
    .sellwise-hero-section {
        min-height: 500px;
    }
    
    .sellwise-hero-title {
        font-size: 2rem;
    }
    
    .sellwise-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .sellwise-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sellwise-hero-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Why SellWise Section */
.why-sellwise-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.why-sellwise-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-sellwise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.why-sellwise-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.why-sellwise-card {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-sellwise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.why-sellwise-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.why-sellwise-card-text {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Why SellWise */
@media (max-width: 768px) {
    .why-sellwise-section {
        padding: 3rem 1.5rem;
    }
    
    .why-sellwise-title {
        font-size: 2rem;
    }
    
    .why-sellwise-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .why-sellwise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-sellwise-card {
        padding: 2rem 1.5rem;
    }
    
    .why-sellwise-icon {
        font-size: 3rem;
    }
    
    .why-sellwise-card-title {
        font-size: 1.25rem;
    }
    
    .why-sellwise-card-text {
        font-size: 0.95rem;
    }
}

/* How SellWise Works Section */
.how-sellwise-section {
    background-color: #b0e0e6;
    padding: 5rem 2rem;
}

.how-sellwise-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-sellwise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4rem;
}

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

.how-sellwise-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-sellwise-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1a1a2e;
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.how-sellwise-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.how-sellwise-step-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive How SellWise */
@media (max-width: 768px) {
    .how-sellwise-section {
        padding: 3rem 1.5rem;
    }
    
    .how-sellwise-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .how-sellwise-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-sellwise-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .how-sellwise-step-title {
        font-size: 1.25rem;
    }
    
    .how-sellwise-step-text {
        font-size: 0.95rem;
    }
}

/* Tailored Section */
.tailored-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    position: relative;
}

.tailored-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #b0e0e6;
}

.tailored-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tailored-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tailored-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
}

.tailored-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tailored-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tailored-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.tailored-item-content {
    flex: 1;
}

.tailored-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.tailored-item-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.tailored-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roles-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Tailored */
@media (max-width: 768px) {
    .tailored-section {
        padding: 3rem 1.5rem;
    }
    
    .tailored-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tailored-title {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
    
    .tailored-text {
        margin-top: 1.5rem;
    }
    
    .tailored-text {
        gap: 2rem;
    }
    
    .tailored-icon {
        font-size: 2rem;
    }
    
    .tailored-item-title {
        font-size: 1.25rem;
    }
    
    .tailored-item-text {
        font-size: 0.95rem;
    }
}

/* Flexible Training Section */
.flexible-training-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

.flexible-training-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flexible-training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flexible-training-text {
    color: var(--text-white);
}

.flexible-training-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.flexible-training-intro {
    font-size: 1.125rem;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.flexible-training-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flexible-training-item {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.flexible-training-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-active);
    font-size: 1.5rem;
    line-height: 1.2;
}

.flexible-training-item strong {
    font-weight: 700;
    color: var(--text-white);
}

.flexible-training-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexible-training-image .mockup-image {
    max-width: 100%;
    height: auto;
}

/* Responsive Flexible Training */
@media (max-width: 768px) {
    .flexible-training-section {
        padding: 3rem 1.5rem;
    }
    
    .flexible-training-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .flexible-training-title {
        font-size: 2rem;
    }
    
    .flexible-training-intro {
        font-size: 1rem;
    }
    
    .flexible-training-item {
        font-size: 0.95rem;
    }
}

/* Flexible Plans Section */
.flexible-plans-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.flexible-plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flexible-plans-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
}

.flexible-plans-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flexible-plan-card {
    background: linear-gradient(135deg, #b0e0e6 0%, #d4e6f0 100%);
    padding: 3rem;
    border-radius: 16px;
}

.flexible-plan-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
}

.flexible-plan-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.flexible-plan-card-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flexible-plan-card-text .flexible-plan-card-title {
    margin-bottom: 0;
}

.flexible-plan-card-text p {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    margin: 0;
}

.flexible-plan-card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-visual-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Flexible Plans */
@media (max-width: 768px) {
    .flexible-plans-section {
        padding: 3rem 1.5rem;
    }
    
    .flexible-plans-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .flexible-plan-card {
        padding: 2rem 1.5rem;
    }
    
    .flexible-plan-card-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .flexible-plan-card-text .flexible-plan-card-title {
        margin-bottom: 0;
    }
    
    .flexible-plan-card-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flexible-plan-card-text p {
        font-size: 1rem;
    }
}

/* Bespoke Section */
.bespoke-section {
    background-color: #ffffff;
    padding: 2rem 2rem 5rem 2rem;
}

.bespoke-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bespoke-intro {
    font-size: 1.25rem;
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bespoke-subtitle {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.bespoke-card {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bespoke-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.bespoke-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.bespoke-card-text {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* Responsive Bespoke */
@media (max-width: 768px) {
    .bespoke-section {
        padding: 3rem 1.5rem;
    }
    
    .bespoke-intro {
        font-size: 1.125rem;
    }
    
    .bespoke-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .bespoke-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bespoke-card {
        padding: 2rem 1.5rem;
    }
    
    .bespoke-icon {
        font-size: 3rem;
    }
    
    .bespoke-card-title {
        font-size: 1.25rem;
    }
    
    .bespoke-card-text {
        font-size: 0.95rem;
    }
}

/* Why Different Section */
.why-different-section {
    background-color: #b0e0e6;
    padding: 5rem 2rem;
}

.why-different-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-different-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.why-different-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4rem;
}

.why-different-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.why-different-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-different-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.why-different-content {
    flex: 1;
}

.why-different-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.why-different-item-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.why-different-item-text strong {
    font-weight: 700;
    color: #1a1a2e;
}

/* Responsive Why Different */
@media (max-width: 768px) {
    .why-different-section {
        padding: 3rem 1.5rem;
    }
    
    .why-different-title {
        font-size: 2rem;
    }
    
    .why-different-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .why-different-list {
        gap: 1.5rem;
    }
    
    .why-different-icon {
        font-size: 1.75rem;
    }
    
    .why-different-item-title {
        font-size: 1.25rem;
    }
    
    .why-different-item-text {
        font-size: 0.95rem;
    }
}

/* Book Demo Section */
.book-demo-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

.book-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.book-demo-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
}

.book-demo-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
}

.book-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-demo-text {
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-demo-text p {
    font-size: 1.125rem;
    color: var(--text-white);
    line-height: 1.7;
    margin: 0;
}

.book-demo-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-white);
    color: #1a1a2e;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    align-self: center;
    margin-top: 1rem;
}

.book-demo-btn:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.book-demo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.meeting-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Book Demo */
@media (max-width: 768px) {
    .book-demo-section {
        padding: 3rem 1.5rem;
    }
    
    .book-demo-title {
        font-size: 2rem;
    }
    
    .book-demo-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .book-demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .book-demo-text p {
        font-size: 1rem;
    }
    
    .book-demo-btn {
        align-self: center;
        text-align: center;
    }
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-intro strong {
    font-weight: 700;
    color: #1a1a2e;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #1a1a2e;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background-color: #ffffff;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #dc3545;
}

.form-group.has-error input::placeholder,
.form-group.has-error textarea::placeholder {
    color: #dc3545;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-submit-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.email-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-graphic {
        min-height: 300px;
    }
}

