/*
 * Estilos para Ritmo Natural 45
 * Combina tonos cálidos y verdes para transmitir energía y naturaleza.
 */

:root {
    --color-orange: #ff8c42;
    --color-green: #4caf50;
    --color-beige: #fdf6e3;
    --color-dark: #2f2f2f;
    --color-light: #ffffff;
    --radius: 8px;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-beige);
    color: var(--color-dark);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: linear-gradient(90deg, var(--color-orange), var(--color-green));
    color: var(--color-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47,47,47,0.55);
    display: flex;
    align-items: center;
    color: var(--color-light);
}

.hero-message h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-message p {
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background-color: var(--color-green);
    color: var(--color-light);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.hero-btn:hover {
    background-color: #3b8f40;
}

/* Programs */
.programs {
    padding: 3rem 0;
}

.programs h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-green);
}

.program-intro {
    margin-bottom: 2rem;
    max-width: 600px;
}

.program-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-list li {
    background-color: var(--color-light);
    border-radius: var(--radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.program-list .icon {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-orange);
}

.program-list .prog-text {
    flex: 1;
}

.program-list h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.program-list p {
    font-size: 0.9rem;
    color: var(--color-dark);
}

.prog-price {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--color-green);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Experiences */
.experiences {
    background-color: var(--color-green);
    color: var(--color-light);
    padding: 3rem 0;
}

.experiences h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.exp-intro {
    margin-bottom: 2rem;
    max-width: 600px;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.exp-item {
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1rem;
}

.exp-item .stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.exp-item p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.exp-author {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.review-section {
    margin-top: 3rem;
}

.review-section h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.review-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.review-section input,
.review-section textarea {
    padding: 0.7rem;
    border: none;
    border-radius: var(--radius);
}

.review-section textarea {
    resize: vertical;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-box {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.popup-box p {
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-family: 'Nunito', sans-serif;
}

/* Contact */
.contact {
    padding: 3rem 0;
}

.contact h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: var(--color-green);
    margin-bottom: 0.5rem;
}

.contact p {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-field label {
    font-family: 'Nunito', sans-serif;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.contact-field input {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
}

.contact-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn {
    background-color: var(--color-orange);
    color: var(--color-light);
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

.btn:hover {
    background-color: #e67e3d;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
    padding: 1rem 0;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-orange);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-message h2 {
        font-size: 1.5rem;
    }
    .hero-message p {
        font-size: 0.9rem;
    }
    .hero-btn {
        font-size: 0.9rem;
    }
}