.homepage-container {
    position: relative;
}

.homepage-container .homepage-icon {
    position: absolute;
    top: 25%;
    left: -32%;
    width: 500px;
    height: auto;
    opacity: 0.1;
}
.section-title {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem;
}
.section-title span {
    font-family: "Staatliches", sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 3.5rem;
}
.section-title span.outlined {
    color: transparent;
    -webkit-text-stroke: 2px white; /* colore del contorno */
    text-transform: uppercase;
}

#transform {
    padding: 1rem;
    text-align: center;
}

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

#transform .image-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#transform .image-card {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 400px;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#transform .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#about {
    padding: 1rem;
    text-align: center;
}
#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
#about .valores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1.1rem;
    list-style: none;
    padding: 0;
}

/* Método Section */
#metodo {
    padding: 1rem;
    text-align: center;
}
#metodo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
#metodo blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 2rem auto;
    max-width: 700px;
}
#metodo img {
    max-width: 100%;
    margin: 2rem 0;
}
#metodo .btn.download {
    background: #1999d5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}

#planes {
    padding: 1rem;
    text-align: center;
}

#planes h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#planes .plans-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 4px;
    flex-wrap: wrap; /* facoltativo, utile per responsività */
}

#planes .plan {
    background-color: #3737379c;
    padding: 2rem;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px; /* gestisce larghezza minima e flessibilità */
    overflow: hidden;
    position: relative; /* necessario per posizionamento assoluto dell'immagine */
}

#planes .plan .plan-icon {
    position: absolute;
    top: -36%;
    right: -27%;
    width: 150px;
    height: auto;
    opacity: 0.4;
}

#planes .plan h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

#planes .plan span {
    display: block;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Testimonios Section */
#testimonials {
    padding: 3rem 1rem;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

#testimonials .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    text-align: left;
}

#testimonials .row video {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#testimonials .row p {
    max-width: 500px;
    font-size: 1.2rem;
    color: #ebebeb;
}

#testimonials .row.left {
    flex-direction: row;
}

#testimonials .row.right {
    flex-direction: row-reverse;
}

/* Galería Section */
#galeria {
    padding: 1rem;
    text-align: center;
}
#galeria h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
#galeria .media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
#galeria img,
#galeria video {
    width: 100%;
    border-radius: 8px;
}

/* Contacto Section */
#contacto {
    padding: 1rem;
    text-align: center;
}
#contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
#contacto form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#contacto input,
#contacto textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
#contacto button {
    background: #1999d5;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
}
#contacto .contact-info {
    margin-top: 2rem;
}
#contacto .whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-decoration: none;
}
