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

:root {
    --color-turquesa: #6ba8ae;
    --color-turquesa-claro: #7eb5ba;
    --color-coral: #e8a899;
    --color-coral-claro: #f0b8a8;
    --color-crema: #fff9f6;
    --color-text-dark: #333333;
    --color-text-gray: #666666;
    --color-white: #ffffff;
}

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
}

.hero {
    background: linear-gradient(135deg, var(--color-turquesa) 0%, var(--color-turquesa-claro) 100%);
    color: var(--color-white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.presentation {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.photo-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f5e6d3 0%, var(--color-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-turquesa);
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(107, 168, 174, 0.2);
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.presentation-text h2 {
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.presentation-text p {
    margin-bottom: 1rem;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.reviews {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.reviews h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.review-card {
    background: linear-gradient(135deg, var(--color-crema) 0%, var(--color-white) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-coral);
    box-shadow: 0 2px 10px rgba(232, 168, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
    padding-bottom: 3rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 168, 153, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--color-coral);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.review-card .stars {
    color: var(--color-coral);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--color-text-gray);
    line-height: 1.5;
}

.quote {
    font-family: 'Times New Roman', serif;
    color: var(--color-coral);
    font-weight: bold;
}

.reviews-source {
    text-align: center;
    margin-top: 2rem;
}

.reviews-source p {
    color: var(--color-text-gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.superprof-logo {
    height: 24px;
    width: auto;
    margin-right: 10px;
}

.reviews-source a {
    color: var(--color-turquesa);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reviews-source a:hover {
    color: var(--color-coral);
    text-decoration: underline;
}

footer {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-claro) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
}

footer p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-white);
    background-color: var(--color-white);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

.services {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.services h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

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

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow:
        inset 0 3px 0 var(--color-turquesa),
        0 8px 22px rgba(107, 168, 174, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 3px 0 var(--color-turquesa-claro),
        0 14px 32px rgba(107, 168, 174, 0.18);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--color-turquesa);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--color-text-gray);
    line-height: 1.8;
}

.how-sessions {
    max-width: 1000px;
    margin: 2rem auto;
    background: linear-gradient(135deg, var(--color-crema) 0%, var(--color-white) 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(232, 168, 153, 0.08);
}

.how-sessions h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.how-sessions > p {
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    font-size: 1.05rem;
}

.sessions-intro {
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.sessions-blocks {
    margin-bottom: 2.5rem;
}

.sessions-blocks h3 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.block {
    background: var(--color-white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-coral);
    box-shadow: 0 1px 8px rgba(232, 168, 153, 0.1);
}

.block h4 {
    font-size: 1.1rem;
    color: var(--color-coral);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.block p {
    color: var(--color-text-gray);
    line-height: 1.8;
}

.sessions-closing {
    color: var(--color-text-gray);
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 8px;
    border-left: 4px solid var(--color-turquesa);
}

.contact-form-section {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.contact-form {
    background: linear-gradient(135deg, var(--color-crema) 0%, var(--color-white) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(107, 168, 174, 0.1);
}

.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--color-turquesa);
    border-radius: 8px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-gray);
    opacity: 0.7;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--color-turquesa-claro);
    box-shadow: 0 4px 12px rgba(107, 168, 174, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-coral);
    box-shadow: 0 0 0 3px rgba(232, 168, 153, 0.2);
    background-color: #fffbf9;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-turquesa) 0%, var(--color-turquesa-claro) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(107, 168, 174, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 168, 174, 0.4);
    background: linear-gradient(135deg, var(--color-turquesa-claro) 0%, var(--color-turquesa) 100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(107, 168, 174, 0.25);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .presentation {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
        text-align: center;
    }

    .services {
        margin: 0;
    }

    .photo-placeholder {
        margin: 0 auto;
        max-width: 100%;
        width: 300px;
        height: 300px;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

